Created
January 17, 2018 11:07
-
-
Save PaulChana/7ed30fbe467f75a743bb5e751b260201 to your computer and use it in GitHub Desktop.
[Bash spinner] Display a progress spinner in bash #shell #bash
This file contains hidden or 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
spinner="/-\|" | |
index=1 | |
printf "\b${spinner:index++%${#spinner}:1}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment