Skip to content

Instantly share code, notes, and snippets.

@dakom
Created December 22, 2021 18:09
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 dakom/80c69ec0fa48f204c480bea1cdb1ea85 to your computer and use it in GitHub Desktop.
Save dakom/80c69ec0fa48f204c480bea1cdb1ea85 to your computer and use it in GitHub Desktop.
Re-run some command until clean exit
#!/bin/sh
until cargo +nightly run --bin parse
do
echo "crashed with exit code $?. Respawning.." >&2
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment