Skip to content

Instantly share code, notes, and snippets.

@jmnsf
Created April 22, 2017 12: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 jmnsf/edf780a0c87dc211de97c2d6e9043b28 to your computer and use it in GitHub Desktop.
Save jmnsf/edf780a0c87dc211de97c2d6e9043b28 to your computer and use it in GitHub Desktop.
Keep any command running forever
#!/bin/sh
# Reruns any command when it exits.
while :
do
eval $@
echo "Died... Re-running in 1 second."
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment