All Projects → nachoparker → progress_bar.sh

nachoparker / progress_bar.sh

Licence: GPL-3.0 license
Progress bar for the shell

Programming Languages

shell
77523 projects

Labels

progress_bar.sh

Progress bar for the shell

Display a progress bar for $1 seconds.

progress bar

It uses partial Unicode blocks to achieve subcharacter precision.

Example:

source progress_bar.sh
progress_bar 60
│█████████████████████████████████████████████████████████▌                                  │ 62%

You can time a long task and use it to have an idea of how much longer to wait

time ./compile.sh    # gives 300 seconds
./compile.sh &>/dev/null & progress_bar 300
│███████████████████████████████                                                             │ 31%

It requires a terminal session with unicode locales, for instance

export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8

Details at Own Your Bits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].