We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b64320 commit 0c68170Copy full SHA for 0c68170
README.md
@@ -363,3 +363,8 @@ grep "failure;" /var/log/secure | awk -F "=" '{print$7}' | awk '{print$1}' | sor
363
echo 1 > /proc/sys/kernel/sysrq
364
echo b > /proc/sysrq-trigger
365
```
366
+**get status of dd while it's still running**
367
+#dd will listen for a signal to display progress. you can send this signal using kill directly to the pid
368
+```
369
+kill -USR1 $(pgrep ^dd)
370
0 commit comments