clpbar

Simple command-line progress bar utility for shell scripts

brewmacoslinux
Try with needOr install directly
Source

About

Command-line progress bar

Commands

clpbar

Examples

Display a progress bar that fills over 10 seconds$ clpbar -t 10
Show progress bar with custom text label$ clpbar -t 5 -l 'Processing files'
Use in a loop to track progress of operations$ for i in {1..100}; do clpbar -p $i -t 100; sleep 0.1; done