这是正常输出:
$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]