Skip to content

Instantly share code, notes, and snippets.

Created September 4, 2012 14:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save anonymous/3621677 to your computer and use it in GitHub Desktop.
Save anonymous/3621677 to your computer and use it in GitHub Desktop.
bash throbber
#!/usr/bin/env bash
C="0" # count
while [ $C -lt 20 ]
do
case "$(($C % 4))" in
0) char="/"
;;
1) char="-"
;;
2) char="\\"
;;
3) char="|"
;;
esac
sleep .2
echo -ne $char "\r"
C=$[$C+1]
done
echo -e 'done\r'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment