vramsteg

Add progress bars to command-line applications

brewmacoslinux
Try with needOr install directly
Source

About

Add progress bars to command-line applications

Commands

vramsteg

Examples

Display a simple progress bar for a long-running command$ vramsteg -t 100 -- sleep 10
Show progress bar while piping data through a command$ cat largefile.txt | vramsteg -t 1000 | wc -l
Display progress bar with custom message and total count$ vramsteg -t 50 -m 'Processing items' -- bash -c 'for i in {1..50}; do sleep 0.1; done'