Skip to content

Instantly share code, notes, and snippets.

@rpetrich
Created March 24, 2019 22:08
Show Gist options
  • Save rpetrich/9dbc44c4e05cca1f75ba79f9b57047c1 to your computer and use it in GitHub Desktop.
Save rpetrich/9dbc44c4e05cca1f75ba79f9b57047c1 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