1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 11:15:43 +02:00

dd: remove checking progress example (#9816)

`pgrep` does not exist and `kill` needs `-s`.
But most importantly, `dd` doesn't have any "showing progress"
functionality.
This commit is contained in:
pixel 2023-02-03 05:17:57 +01:00 committed by GitHub
parent 81423dfef8
commit 41d7de9950
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,3 @@
- Restore a drive from an IMG file: - Restore a drive from an IMG file:
`dd if={{path/to/file.img}} of={{/dev/drive_device}}` `dd if={{path/to/file.img}} of={{/dev/drive_device}}`
- Check the progress of an ongoing dd operation (run this command from another shell):
`kill -USR1 $(pgrep ^dd)`