Created
May 5, 2016 02:15
-
-
Save HokieGeek/4bd4db38d7febc30cf8becc31707cb0a to your computer and use it in GitHub Desktop.
Silly...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
throbber() { | |
stages="| / - \ | / -" | |
while true; do | |
for s in $stages; do | |
echo -n $s | |
sleep 0.0625 | |
echo -n $'\b' | |
done | |
done | |
} | |
echo -n " ";throbber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment