Skip to content

Instantly share code, notes, and snippets.

@tomhennigan
Created November 9, 2012 16:25
Show Gist options
  • Save tomhennigan/4046652 to your computer and use it in GitHub Desktop.
Save tomhennigan/4046652 to your computer and use it in GitHub Desktop.
Happy friday
#!/bin/sh
frames=( "(╮°-°)╮ ┳━┳" "(╯°o°)╮ ┳━┳" "(╯°o°)╯ ︵ ╡" "(╯°o°)╯ ︵┻━┻" "(╮°□°)╮ ┻━┻" );
for frame in "${frames[@]}"; do
printf "%s\033[0K\r" "${frame}";
sleep 0.5;
done
@James1x0
Copy link

Very nice.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment