Skip to content

Instantly share code, notes, and snippets.

@nsmith-
Last active April 23, 2018 10:54
Show Gist options
  • Save nsmith-/d13973adfb9bd06d23ab to your computer and use it in GitHub Desktop.
Save nsmith-/d13973adfb9bd06d23ab to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in {1..10}; do
echo 'Sleeping' $i
sleep $i &
# prevent more than 5 tasks at a time
while [[ `jobs|wc -l` -gt 4 ]]; do sleep 1; done;
done
wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment