Skip to content

Instantly share code, notes, and snippets.

@starkcoffee
Last active February 4, 2016 09:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save starkcoffee/16727d693aed424dd675 to your computer and use it in GitHub Desktop.
Save starkcoffee/16727d693aed424dd675 to your computer and use it in GitHub Desktop.
my first bash animation!
#!/bin/bash
echo -en "\033[1B"
while true; do
echo -n '|'
echo -en "\033[1D"
sleep 1
echo -n '/'
echo -en "\033[1D"
sleep 1
echo -n '-'
echo -en "\033[1D"
sleep 1
echo -n '\'
echo -en "\033[1D"
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment