1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2024-12-04 10:24:46 +02:00

Add pmonitor link and correct tools' description

This commit is contained in:
Diomidis Spinellis 2018-04-03 10:44:10 +03:00
parent 666c7fee18
commit 89402366a6

2
README.md Normal file → Executable file
View File

@ -262,7 +262,7 @@ Notes:
mkdir empty && rsync -r --delete empty/ some-dir && rmdir some-dir
```
- For seeing progress when copying files, use `pv`, [`pycp`](https://github.com/dmerejkowsky/pycp), [`progress`](https://github.com/Xfennec/progress), `rsync --progress`, or, for block-level copying, `dd status=progress`.
- For monitoring progress when processing files, use `pv`, [`pycp`](https://github.com/dmerejkowsky/pycp), [`pmonitor`](https://github.com/dspinellis/pmonitor), [`progress`](https://github.com/Xfennec/progress), `rsync --progress`, or, for block-level copying, `dd status=progress`.
- Use `shuf` to shuffle or select random lines from a file.