Created
July 19, 2020 21:05
-
-
Save ChadSki/7b8586877a66f9d673241a3809dd9567 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while [ true ]; do | |
while [ $(jobs | wc -l) -ge 4 ]; do | |
echo sleep | |
sleep 2 | |
done | |
echo "smoke" | |
(sleep 10; echo "fire") & | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment