Skip to content

Instantly share code, notes, and snippets.

@lyuboraykov
Created September 1, 2014 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyuboraykov/707922a7f5abe8f9448f to your computer and use it in GitHub Desktop.
Save lyuboraykov/707922a7f5abe8f9448f to your computer and use it in GitHub Desktop.
Loading console animation.
#!/usr/bin/env bash
LOADING_SYMBOLS=("\\" "|" "/" "-")
INDEX=0
while true; do
INDEX=$(bc <<< "($INDEX + 1)%4")
echo -ne "${LOADING_SYMBOLS[$INDEX]} \033[0K\r"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment