Skip to content

Instantly share code, notes, and snippets.

@BarnacleBob
Created November 2, 2017 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BarnacleBob/8b2bdb8132f5dac8c1c1f3dcd9b03ed9 to your computer and use it in GitHub Desktop.
Save BarnacleBob/8b2bdb8132f5dac8c1c1f3dcd9b03ed9 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "calling"
(
echo "sleeping 5"
( sleep 5 && echo "sleep finished" )
)&
echo "waiting for background"
wait
echo "calling"
(
echo "sleeping 5"
(sleep 5 && echo "sleep finished") &
)
echo "waiting for background"
wait
echo "exit"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment