mort9 content
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
function handle_sigint() # Kill all subprocesses and childs
{
for proc in `jobs -p`
do
kill $proc
done
}
cmd1 &
cmd2 &
...
trap handle_sigint SIGINT # calls handle_sigint on SIGINT (ctrl-c)
wait
jq '..|.updateDate?' # Skip non-json data