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 | |
| progressbar() | |
| { | |
| echo "THIS MAY TAKE A WHILE, PLEASE BE PATIENT WHILE ______ IS RUNNING..." | |
| printf "[" | |
| # While process is running... | |
| while kill -0 $PID 2> /dev/null; do | |
| printf "▓" | |
| sleep 1 |