Sponsored Content
Top Forums Shell Programming and Scripting How to find the job outside the box? Post 302930902 by RudiC on Thursday 8th of January 2015 01:33:49 PM
Old 01-08-2015
How about
Code:
awk     '$1=="s"        {sub (/\)/,"",$2)
                         OUT[$2]
                         next}
                        {IN[$1]}
          END           {for (C in OUT) if (!(C in IN)) print C}
        ' FS="(" file
sname-pname-cprexmta
sname-pname-abcd-phase
sname-pname-cprexloa
sname-pname-cprexrga
sname-pname-cprexhaa

This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to find password for current user in unix box

hi all, kindly let me know the command to get password and user for current user in unix. thanks in advance. --Bali Reddy.Y (1 Reply)
Discussion started by: balireddy_77
1 Replies

2. UNIX for Dummies Questions & Answers

How to insert child job under a box job?

I have this box job and it contains only one job under it which is to load a file. I want to insert a "File Watcher", "Copy File" to it? Have no clue how to do that...any help plzzz... (4 Replies)
Discussion started by: xejatt
4 Replies

3. Shell Programming and Scripting

Command/script to find size of Unix Box ?

Please could anyone provide me the Command/script to find the size and usage of Unix box ASAP ? (6 Replies)
Discussion started by: sakthifire
6 Replies

4. Shell Programming and Scripting

How to find job runtime using Autorep

Hey guys, Is there an autorep option to find out the current runtime of a job.. Or do you have to work it out using machine time and start time? What I'm trying to do is create a script that will email out the autosys job details. I was hoping there would be an autorep command that would... (0 Replies)
Discussion started by: Jazmania
0 Replies

5. AIX

How to : Find Which hashing algorithem used in AIX Box ?

hello Friends , How can i identify the hashing algo used by shadow file in aix box >??? Thanks AVKlinux (1 Reply)
Discussion started by: avklinux
1 Replies

6. Shell Programming and Scripting

How to find the job and its location

Guys; I first I thank you for helping me few times in the past; A job runs every day at 8AM and looks for a file “abcd.txt” in directory “/usr/task/tmp”. How to find the job and its location. I need to change the file name to “abcd.dat”. it is UNIX environment. (2 Replies)
Discussion started by: clem2610
2 Replies

7. Linux

How to find remote Linux box login account without login in to that box?

Hi, How to find remote Linux box login account without login in to that box? I don't have login account at my remote Linux box. But I need who are all having login account. How do I findout? Thanks, --Muthu. (3 Replies)
Discussion started by: Muthuselvan
3 Replies

8. Shell Programming and Scripting

find cmd works different on cron job ?

/usr/bin/find $SEARCH_DIR -daystart \( \( -name 'KI*' -a -name '*.csv' \) -o -name '*_xyz_*' \) -mtime $DAYS_AGO -printf %f -printf "\n" | sort -r > $FILES The above command gives different results when run on a cron job. When run manually the result is accurate. (2 Replies)
Discussion started by: nuthalapati
2 Replies

9. Red Hat

How to find the number of cores in a Red Hat Linux box?

Hi, Could you please Tell me the command to find the number of cores in red hat box? I have tried cat cat /proc/cpuinfo | grep processor | wc -l command to find the number of processers. But need to fond the number of cores. Is there any difference between core and processor? ... (4 Replies)
Discussion started by: bikas89
4 Replies

10. HP-UX

Script execution is very slow when trying to find all files and their owners on HP-UX box

Hi, I have a HP-UX server were I need to list all the files in the entire file system, their directory path, last modified date, owner and group. I do not need to search the file contents. I created the script given below and I am excluding directories and files of type tmp, temp and log. The... (4 Replies)
Discussion started by: Adyan Faruqi
4 Replies
GLPOINTPARAMETER(3G)						  [FIXME: manual]					      GLPOINTPARAMETER(3G)

NAME
glPointParameter - specify point parameters C SPECIFICATION
void glPointParameterf(GLenum pname, GLfloat param); void glPointParameteri(GLenum pname, GLint param); PARAMETERS
pname Specifies a single-valued point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted. param Specifies the value that pname will be set to. C SPECIFICATION
void glPointParameterfv(GLenum pname, const GLfloat * params); void glPointParameteriv(GLenum pname, const GLint * params); PARAMETERS
pname Specifies a point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted. params Specifies the value to be assigned to pname.. DESCRIPTION
The following values are accepted for pname: GL_POINT_FADE_THRESHOLD_SIZE params is a single floating-point value that specifies the threshold value to which point sizes are clamped if they exceed the specified value. The default value is 1.0. GL_POINT_SPRITE_COORD_ORIGIN params is a single enum specifying the point sprite texture coordinate origin, either GL_LOWER_LEFT or GL_UPPER_LEFT. The default value is GL_UPPER_LEFT. ERRORS
GL_INVALID_VALUE is generated if the value specified for GL_POINT_FADE_THRESHOLD_SIZE is less than zero. GL_INVALID_ENUM is generated If the value specified for GL_POINT_SPRITE_COORD_ORIGIN is not GL_LOWER_LEFT or GL_UPPER_LEFT. ASSOCIATED GETS
glGet() with argument GL_POINT_FADE_THRESHOLD_SIZE glGet() with argument GL_POINT_SPRITE_COORD_ORIGIN SEE ALSO
glPointSize() COPYRIGHT
Copyright (C) 1991-2006 Silicon Graphics, Inc. Copyright (C) 2010 Khronos Group. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/. [FIXME: source] 05/30/2012 GLPOINTPARAMETER(3G)
All times are GMT -4. The time now is 10:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy