Sponsored Content
Top Forums Shell Programming and Scripting How to find the job outside the box? Post 302930892 by RavinderSingh13 on Thursday 8th of January 2015 12:22:59 PM
Old 01-08-2015
Hello ken6503,

Following may help you in same.
Code:
awk '/^s\(s/{A=1} !/^s\(s/{A=0} A{print $0 > "Found_jobs"} !A{print $0 > "NOT_found_jobs"}' Input_file
OR
awk '/^s\(s/{print $0 > "Found_jobs"} !/^s\(s/{print $0 > "NOT_found_jobs"}'  Input_file
OR
awk '/^s\(s.*\)$/{print $0 > "Found_jobs"} !/^s\(s.*\)/{print $0 > "NOT_found_jobs"}' Input_file
OR
awk '/^s\(s.*\)$/{print  > "Found_jobs";next} {print > "NOT_found_jobs"}' Input_file

It will create 2 files named Found_jobs and NOT_found_jobs as follows.
Code:
cat Found_jobs 
s(sname-pname-cprexhaa)
s(sname-pname-cprexloa)
s(sname-pname-cprexmta)
s(sname-pname-cprexrga)
s(sname-pname-cprexa-success-2)
s(sname-pname-abcd-phase)

cat NOT_found_jobs 
sname-pname-cprexa
sname-pname-cprexa-success-1
sname-pname-cprexa-success-2
sname-pname-cprexa-phase-job

Thanks,
R. Singh

Last edited by RavinderSingh13; 01-08-2015 at 01:34 PM.. Reason: Added one more solution
This User Gave Thanks to RavinderSingh13 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
GLGETPOINTERV(3G)														 GLGETPOINTERV(3G)

NAME
glGetPointerv - return the address of the specified pointer C SPECIFICATION
void glGetPointerv( GLenum pname, void **params ) PARAMETERS
pname Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, and GL_VERTEX_ARRAY_POINTER are accepted. params Returns the pointer value specified by pname. DESCRIPTION
glGetPointerv returns pointer information. pname is a symbolic constant indicating the pointer to be returned, and params is a pointer to a location in which to place the returned data. NOTES
glGetPointerv is available only if the GL version is 1.1 or greater. The pointers are all client-side state. The initial value for each pointer is 0. When the GL_ARB_multitexture extension is supported, querying the GL_TEXTURE_COORD_ARRAY_POINTER returns the value for the active client texture unit. ERRORS
GL_INVALID_ENUM is generated if pname is not an accepted value. SEE ALSO
glArrayElement(3G), glClientActiveTextureARB(3G), glColorPointer(3G), glDrawArrays(3G), glEdgeFlagPointer(3G), glFeedbackBuffer(3G), glIndexPointer(3G), glInterleavedArrays(3G), glNormalPointer(3G), glSelectBuffer(3G), glTexCoordPointer(3G), glVertexPointer(3G) GLGETPOINTERV(3G)
All times are GMT -4. The time now is 01:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy