зеркало из
https://github.com/iharh/notes.git
synced 2025-11-01 06:06:08 +02:00
16 строки
335 B
Plaintext
16 строки
335 B
Plaintext
pp
|
|
pipes-progress (https://github.com/avz/pp)
|
|
|
|
pv
|
|
Pipe Viewer (at EPEL repo)
|
|
|
|
samples:
|
|
|
|
tar -cf - . | pv -s $(du -sb . | awk '{print $1}') | gzip > out.tgz
|
|
tar -cf - . | pv -s $(du -sb . | awk '{print $1}') | bzip2 > out.tar.bz2
|
|
|
|
pv file.tgz | tar xzf - -C <target-dir>
|
|
pv file.tar.bz2 | tar xjf - -C .
|
|
|
|
pv file.gz | gunzip > file
|