Skip to content

Instantly share code, notes, and snippets.

@koniiiik
Last active December 20, 2015 19:38
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 koniiiik/6184113 to your computer and use it in GitHub Desktop.
Save koniiiik/6184113 to your computer and use it in GitHub Desktop.
#!/bin/bash
RUN=1
trap "echo Terminated.; RUN=''" TERM
trap "echo Exiting.; sleep 1; echo 'Now really exiting.'" EXIT
while [ -n "$RUN" ]; do
echo "Tick."
sleep 1;
done
echo "Loop finished."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment