Sponsored Content
Top Forums Shell Programming and Scripting How to find the job outside the box? Post 302930883 by ken6503 on Thursday 8th of January 2015 11:44:13 AM
Old 01-08-2015
How to find the job outside the box?

Hi gurus,

below file is job list, the records without s( in the begining is job name in the box, the records with s() is the job depends on them (some of them in the box, some of them not in the box). I need to use script to find the job name not in the box.
Code:
 
sname-pname-cprexa
sname-pname-cprexa-success-1
s(sname-pname-cprexhaa)
s(sname-pname-cprexloa)
sname-pname-cprexa-success-2
s(sname-pname-cprexmta)
s(sname-pname-cprexrga)
sname-pname-cprexa-phase-job
s(sname-pname-cprexa-success-2)
s(sname-pname-abcd-phase)

from above file, the inbox job is
Code:
 
sname-pname-cprexa
sname-pname-cprexa-phase-job
sname-pname-cprexa-success-1
sname-pname-cprexa-success-2

and the job not inbox is
Code:
 
sname-pname-cprexhaa
sname-pname-cprexloa
sname-pname-cprexmta
sname-pname-cprexrga
sname-pname-abcd-phase

I wrote a script to do this but it is a little bit compleated. I am wonder if there is any easy way to achive this task.

my script as below.
grep ^s( filename > file1
grep -v ^s > file2
then remove s( and ) with command sed 's/s(//' |sed 's/)//'
then compare these two file2 and file1 find outbox job.

any inputs are welcom.

thanks in advance.
 

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
All times are GMT -4. The time now is 09:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy