#progress-bar #script #terminal #cli

bin+lib progredient

一个用于渲染文本进度条的程序

2 个稳定版本

1.1.0 2023年6月30日
1.0.0 2022年5月6日

143可视化 中排名

每月 29 次下载

MIT 许可证

9KB
186

progredient

Crate Build Status MIT Licensed

只是简单地包装了 dominicparga/progressing 以便在脚本等中直接使用。

安装

$ cargo install progredient

使用方法

Usage:
progredient --at X%
progredient --at Y --from X --to Z

Optional arguments:
--length L        stretch the bar to be this number of chars long
--style ABCDE     render the bar as "ABBBBBBCDDDE" with C positioned at --at
--label LABEL     show this text after the bar
--left            show the label before the bar instead
--no-newline      do not print a newline after the bar

示例

查看磁盘使用情况

$ df | grep disk | while read label blocks used available capacity rest; do progredient --at $capacity --label $label --style '[|| ]' ; done
[||||              ] /dev/disk1s5s1
[|                 ] /dev/disk1s4
[|                 ] /dev/disk1s2
[|                 ] /dev/disk1s6
[||||||||||||||    ] /dev/disk1s1

跟踪工作日

$ to_seconds() { gdate -d "1970-01-01 UTC $1" +%s }
$ progredient --at $(to_seconds $(gdate +%T)) --from $(to_seconds 08:00) --to $(to_seconds 17:00) --style "--O--"
------------O-------

检查电池

$ progredient --at $(pmset -g batt | grep -o '[0-9]*%') --style '()) }'
()))))))))))))))   }

依赖项

~120KB