1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kill-child-jobs/test/make-and-kill-child-jobs.sh

17 rivejä
266 B
Bash

#!/bin/sh
set -e
DIR=$(dirname "$0")
. "$1"
# Set up child jobs
"$DIR/wait_for_pid_exit.sh" job $$ &
"$DIR/wait_for_pid_exit.sh" disowned $$ &
builtin disown || echo "shell does not support disown"
# Wait for jobs to actually start.
sleep 0.01s
kill_child_jobs