Linux使用带有tqdm的“监视”来监视日志

时间:2020-01-14 08:17:42

标签: linux shell watch tqdm

这是正常输出:

$grep -E '.*status' api_logging.log | tqdm --total=808 --desc='TOTAL'|wc -l

TOTAL: 100%|█████████████████████████████████████████| 808/808 [00:00<00:00, 529365.45it/s]
808

但是我想继续监视: 如何隐藏输出的第一行?

$watch -n 1 grep -E '.*status' api_logging.log | tqdm --total=808 --desc='TOTAL'|wc -l

TOTAL:   0%|                                    | 0/808 [00:00<?, ?it/s]
TOTAL: 100%|████████████████████████████████████| 808/808 [00:00<00:00, 327466.81it/s]

0 个答案:

没有答案