Skip to content

Instantly share code, notes, and snippets.

@isomorphisms
Created January 14, 2015 19:05
Show Gist options
  • Save isomorphisms/f5f2e392f5b0c39b7dba to your computer and use it in GitHub Desktop.
Save isomorphisms/f5f2e392f5b0c39b7dba to your computer and use it in GitHub Desktop.
#!/bin/bash
finished()
{
echo -e "\n\nDone!"
exit $?
}
trap finished SIGINT
interrupt()
{
echo -e "\n\nSomething went wrong."
exit $?
}
trap interrupt SIGKILL SIGTERM
#main program
echo -e "Begin.\n\n"
for minute in {1..15}
do
echo -n $minute
for seconds in {1..12}
do
sleep 5
echo -n '. '
done
echo "\n"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment