(usage): Document the fact that SIGUSR1 makes dd
authorJim Meyering <jim@meyering.net>
Fri, 25 Jul 2003 07:45:20 +0000 (07:45 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 25 Jul 2003 07:45:20 +0000 (07:45 +0000)
output its current record counts.  Reported by Jurriaan.

src/dd.c

index 9977592..187764c 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -327,6 +327,17 @@ Each KEYWORD may be:\n\
   sync      pad every input block with NULs to ibs-size; when used\n\
               with block or unblock, pad with spaces rather than NULs\n\
 "), stdout);
+      fputs (_("\
+\n\
+Note that sending a SIGUSR1 signal to a running `dd' process makes it\n\
+print to standard error the number of records read and written so far,\n\
+then to resume copying.\n\
+\n\
+  $ dd if=/dev/zero of=/dev/null& pid=$!\n\
+  $ kill -USR1 $pid; sleep 1; kill $pid\n\
+  10899206+0 records in\n\
+  10899206+0 records out\n\
+"), stdout);
       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
     }
   exit (status);