Skip to content

Instantly share code, notes, and snippets.

@animatedlew
Forked from rpetrich/spinner.sh
Last active March 24, 2019 22:30
Show Gist options
  • Save animatedlew/8786a070f60fba77e08ea5d3f2442ebc to your computer and use it in GitHub Desktop.
Save animatedlew/8786a070f60fba77e08ea5d3f2442ebc to your computer and use it in GitHub Desktop.
Moon loading spinner
#!/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