[BASH] Script to manage background scripts (running, finished, exit code)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting [BASH] Script to manage background scripts (running, finished, exit code)
# 8  
Old 10-16-2014
@sea On systems with /proc [ -d /proc/$PID ] is a nice and efficient alternative to using ps ... | grep $PID | grep -v grep

@Corona688 Interesting script - Is it up to the caller to ensure they dont exceed MAX jobs on calling (I cant spot anything that limits the number of background jobs started).
# 9  
Old 10-16-2014
Quote:
Originally Posted by Chubler_XL
@Corona688 Interesting script - Is it up to the caller to ensure they dont exceed MAX jobs on calling (I cant spot anything that limits the number of background jobs started).
The while [[ "$TOTAL" -ge "$MAX" ]] loop waits until one quits.

Even on systems without /proc, you can just do "ps pid" and it will return true if it exists and false if it doesn't, no need to grep | awk | sed | kitchen | sink.
# 10  
Old 10-16-2014
Quote:
Originally Posted by Corona688
The while [[ "$TOTAL" -ge "$MAX" ]] loop waits until one quits.
Oh yes I see it now - think I missed it due to the indenting Smilie
# 11  
Old 10-16-2014
Quote:
Originally Posted by Corona688
The while [[ "$TOTAL" -ge "$MAX" ]] loop waits until one quits.

Even on systems without /proc, you can just do "ps pid" and it will return true if it exists and false if it doesn't, no need to grep | awk | sed | kitchen | sink.
If you save the PIDs when you fire up a background job:
Code:
job& pid=$!

an even faster way to find out if the job is still running is:
Code:
if kill -0 $pid 2>&/dev/null
then    echo "$pid is still running"
else    echo "$pid is no longer running"
fi

# 12  
Old 10-16-2014
First time I've seen this approach does this actually signal the running process in any way?

Do you know how portable this zero signal is?
# 13  
Old 10-16-2014
kill is faster than ps? I think they're both externals..
# 14  
Old 10-16-2014
Kill is a built-in on a lot of shells, probably because it needs to be aware of jobs. aka kill %1.
This User Gave Thanks to Chubler_XL For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Terminal running bash/rsync script does not close with exit (MacOS High SIerra)

Hello, I am running a bash script to do an rsync back on a computer running MacOS High Sierra. This is the script I am using, #!/bin/bash # main backup location, trailing slash included backup_loc="/Volumes/Archive_Volume/00_macos_backup/" # generic backup function function backup {... (12 Replies)
Discussion started by: LMHmedchem
12 Replies

2. Shell Programming and Scripting

Problems running scripts in the background

Hi Could someone offer some help on this problem I've got with running a background process. As part of a script that does a stop/start/status for a piece of software called SAS, the following extract is from part of the start step. My issue is that when the script is run, the control... (0 Replies)
Discussion started by: GavP
0 Replies

3. Shell Programming and Scripting

Running scripts in background

Hi, below is my master script wihch inturn runs 2 scripts in background #master_script.sh ./subscript1.sh & ./subscript2.sh & executed the master_script.sh from unix command prompt $ ./master_script.sh it is executing the subscripts and they are completing fine, however master_script.sh is... (2 Replies)
Discussion started by: JSKOBS
2 Replies

4. Shell Programming and Scripting

Bash Question: HowTo Exit Script with User Input While Process is Running Mid-Loop?

Hi, I have written a script that allows me to repetitively play a music file $N times, which is specified through user input. However, if I want to exit the script before it has finished looping $N times, if I use CTRL+c, I have to CTRL+c however many times are left in order to complete the loop.... (9 Replies)
Discussion started by: hilltop_yodeler
9 Replies

5. Shell Programming and Scripting

Catch exit code of specific background process

Hi all, i hava a specific backgroud process. I have de PID of this process. At some time, the process finish his job, is there any way to catch the exit code? I use "echo $?" normally for commands. Thanks! (2 Replies)
Discussion started by: Xedrox
2 Replies

6. Shell Programming and Scripting

Capturing the exit status of the script running in background

Hi All, I have a scenario where I am executing some child shell scripts in background (using &)through a master parent script. Is there a way I can capture the exit status of each individual child script after the execution is completed. (2 Replies)
Discussion started by: paragkalra
2 Replies

7. Shell Programming and Scripting

Issues with exit after running jobs in background

I have the following sample script to run a script the jobs with the same priority(in this case field3) in parallel; wait for the jobs to finish and run the next set of jobs in parallel.When all the lines are read exit the script. I have the following script which is doing evrything I want... (1 Reply)
Discussion started by: hyennah
1 Replies

8. UNIX for Dummies Questions & Answers

background job finished notification

In my last job someone gave me the command to put in my .profile that let me know when a job I had running in the background finished. It was a word about 5 char long. I can't remember it! (4 Replies)
Discussion started by: nkeller
4 Replies

9. Shell Programming and Scripting

exit status of Invoking two or more scripts in background

I have a sript which is going to trigger other 3 scripts in background simultaneously for eg: Main Script:(main.sh) ----------- sh a.sh & sh b.sh & sh c.sh & How to catch the exit status and store it in a variable for all those three scripts in main script. Is there any other way of... (4 Replies)
Discussion started by: Omkumar
4 Replies
Login or Register to Ask a Question