Created
April 28, 2021 18:59
-
-
Save christopher-caldwell/4d3c35d2b7954516d2a8010e09b7308e to your computer and use it in GitHub Desktop.
Shell progress bar
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
#!/bin/bash | |
echo '##### (33%)\r\c' | |
sleep 1 | |
echo '############# (66%)\r\c' | |
sleep 1 | |
echo '####################### (100%)\r\c' | |
echo '\n' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment