We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6909a0 commit 93147ecCopy full SHA for 93147ec
pages/common/tqdm.md
@@ -1,8 +1,16 @@
1
# tqdm
2
3
-> Create a progress bar.
+> Show progress over time of a command.
4
> More information: <https://tqdm.github.io/>.
5
6
+- Show iterations per second and use stdout afterwards:
7
+
8
+`{{seq 10000000}} | tqdm | {{command}}`
9
10
- Create a progress bar:
11
-`seq 10000000 | tqdm --total 10000000 --null`
12
+`{{seq 10000000}} | tqdm --total 10000000 | {{command}}`
13
14
+- Specify unit and total:
15
16
+`tar -zcf - {{docs/}} | tqdm --bytes --total $(du -sb {{docs/}} | cut -f1) > {{backup.tgz}}`
0 commit comments