Created
March 24, 2019 22:08
-
-
Save rpetrich/9dbc44c4e05cca1f75ba79f9b57047c1 to your computer and use it in GitHub Desktop.
Moon loading spinner
This file contains 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 | |
while :; do | |
for c in π π π π π π π π π π π π; do | |
echo -en "\r" "$c" | |
sleep 0.1 | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment