Skip to content

Instantly share code, notes, and snippets.

@ilguzin
Forked from anonymous/bash-throbber.sh
Created November 19, 2013 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ilguzin/7545955 to your computer and use it in GitHub Desktop.
Save ilguzin/7545955 to your computer and use it in GitHub Desktop.
#!/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