Created
November 9, 2012 16:25
-
-
Save tomhennigan/4046652 to your computer and use it in GitHub Desktop.
Happy friday
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/sh | |
frames=( "(╮°-°)╮ ┳━┳" "(╯°o°)╮ ┳━┳" "(╯°o°)╯ ︵ ╡" "(╯°o°)╯ ︵┻━┻" "(╮°□°)╮ ┻━┻" ); | |
for frame in "${frames[@]}"; do | |
printf "%s\033[0K\r" "${frame}"; | |
sleep 0.5; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice.