Revision 14088
Added by Aaron Marcuse-Kubitza over 10 years ago
with_all | ||
---|---|---|
23 | 23 |
|
24 | 24 |
for input in "${inputs[@]}"; do |
25 | 25 |
eval "yes|make ${input}$* &" |
26 |
disown -h "$(jobs|tail -1|"$selfDir/jobspecs")" # ignore SIGHUP
|
|
26 |
# don't disown so that it will be auto-killed if the shell is
|
|
27 | 27 |
sleep 2 # wait for initial output so that outputs don't become jumbled |
28 | 28 |
done |
29 | 29 |
} |
Also available in: Unified diff
bugfix: bin/with_all, import_all: don't disown processes because they should be auto-killed if the shell is (disown was only needed before we used screen)