using mutiple "nohup" to execute multiple commands.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting using mutiple "nohup" to execute multiple commands.
# 1  
Old 02-23-2009
using mutiple "nohup" to execute multiple commands.

I need to run multiple commands on remote server using the nohup...
I have tried 2 options

1) rsh <SERVER_NAME> -n "nohup perl $SCRIPTS_DIR/abc.pl ; $SCRIPTS_DIR/xyz.ksh & " &

2) rsh <SERVER_NAME> -n "nohup perl $SCRIPTS_DIR/abc.pl & nohup $SCRIPTS_DIR/xyz.ksh & " &

I need to know if the 1st command places both the scripts in "nohup", or do I have to use the second command to have both the scripts running without hangup?

Which is more optimised and effective, if both are solving my purpose?
# 2  
Old 02-24-2009
The second is better. However, in both cases, output may get corrupted, since two nohups running at once will both try to output to nohup.out. I think a better idea would be to do split them into two separate rsh's.
Code:
rsh SERVER_NAME -n '( $SCRIPTS_DIR/abc.pl &> $HOME/abc.out) &'
rsh SERVER_NAME -n '( $SCRIPTS_DIR/xyz.ksh &> $HOME/xyz.out ) &'

By putting the execution of the shell into a sub-shell (...) you avoid the need for nohup. Once it is backgrounded and output redirected, the process won't see signals like SIGHUP when the parent shell executes.

Because the shell exits almost immediately, rsh should return very soon thereafter, and thus it is not needed to put rsh in the background.
# 3  
Old 03-06-2009
I did use your syntax...but not entirely...
as the "()" stuff was somehow not working...
did use multiple rsh...with nohups on each one

Thanks a lot for the suggestions provided.
The multiple "rsh's" did help!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. AIX

Nim server "Unable to execute remote client commands"

Hello, What is its mean? Could you please help me? Best regards, root@nimserver:/> nimadm -j nimadmvg -c dev4 -s spot1 -l lpp_source1 -d "hdisk7" -Y Initializing the NIM master. Initializing NIM client dev4. 0042-006 c_rsh: (exec_nimsh_cmd) exec_cmd Error 0 poll: setup failure... (2 Replies)
Discussion started by: getrue
2 Replies

3. UNIX for Beginners Questions & Answers

Extract delta records using with "comm" and "sort" commands combination

Hi All, I have 2 pipe delimited files viz., file_old and file_new. I'm trying to compare these 2 files, and extract all the different rows between them into a new_file. comm -3 < sort file_old < sort file_new > new_file I am getting the below error: -ksh: sort: cannot open But if I do... (7 Replies)
Discussion started by: njny
7 Replies

4. Red Hat

files having Script which works behind "who" & "w" commands

Dear All, plz print the path of files which have the script of "who" & "w" commands. thnx in advance. (6 Replies)
Discussion started by: saqlain.bashir
6 Replies

5. Solaris

Relation btw commands, "man" and "more" ???

Hi guys, Hope u r doing find. I have this query. When we check the manual pages for a certain command, say man cat we see the manual page with more What is UNIX really doing here, I mean why not less command instead of more command. And can we have UNIX display the manual pages with less command... (2 Replies)
Discussion started by: gabam
2 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. Shell Programming and Scripting

Unix commands delete all files starting with "X" except "X" itself. HELP!!!!?

im a new student in programming and im stuck on this question so please please HELP ME. thanks. the question is this: enter a command to delete all files that have filenames starting with labtest, except labtest itself (delete all files startign with 'labtest' followed by one or more... (2 Replies)
Discussion started by: soccerball
2 Replies

8. Shell Programming and Scripting

how do execute "vi" commands in shell script?

Hi All, I need to execute the following "vi" commands in my script. How can I do that?? pls help me.... 1. escape (escape mode) 2. gg (goto first line) 3. shift+v (visual mode) 4. shift+g (goto to last line) 5. = (alinment) Thanks in advance, Saravana (3 Replies)
Discussion started by: askumarece
3 Replies

9. UNIX for Dummies Questions & Answers

"nohup" and "&" commands

Why would anyone ever type in a command like this: nohup command & nohup lets you logout of your telnet session so why add "&" to run it in the background? (1 Reply)
Discussion started by: xadamz23
1 Replies

10. UNIX for Advanced & Expert Users

Commands on Digital Unix equivalent to for "top" and "sar" on other Unix flavour

Hi, We have a DEC Alpha 4100 Server with OSF1 Digital Unix 4.0. Can any one tell me, if there are any commands on this Unix which are equivalent to "top" and "sar" on HP-UX or Sun Solaris ? I am particularly interested in knowing the CPU Load, what process is running on which CPU, etc. ... (1 Reply)
Discussion started by: sameerdes
1 Replies
Login or Register to Ask a Question