Skip to content

Instantly share code, notes, and snippets.

@HokieGeek
Created May 5, 2016 02:15
Show Gist options
  • Save HokieGeek/4bd4db38d7febc30cf8becc31707cb0a to your computer and use it in GitHub Desktop.
Save HokieGeek/4bd4db38d7febc30cf8becc31707cb0a to your computer and use it in GitHub Desktop.
Silly...
#!/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