Skip to content

Instantly share code, notes, and snippets.

@nfrigus
Forked from ilguzin/bash-throbber.sh
Created October 16, 2015 16:30
Show Gist options
  • Save nfrigus/64425566f98fe06f6645 to your computer and use it in GitHub Desktop.
Save nfrigus/64425566f98fe06f6645 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