aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dd.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r--coreutils/dd.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c
index 0150aff96..43545c010 100644
--- a/coreutils/dd.c
+++ b/coreutils/dd.c
@@ -10,46 +10,46 @@
10//config: bool "dd (7.1 kb)" 10//config: bool "dd (7.1 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: dd copies a file (from standard input to standard output, 13//config: dd copies a file (from standard input to standard output,
14//config: by default) using specific input and output blocksizes, 14//config: by default) using specific input and output blocksizes,
15//config: while optionally performing conversions on it. 15//config: while optionally performing conversions on it.
16//config: 16//config:
17//config:config FEATURE_DD_SIGNAL_HANDLING 17//config:config FEATURE_DD_SIGNAL_HANDLING
18//config: bool "Enable signal handling for status reporting" 18//config: bool "Enable signal handling for status reporting"
19//config: default y 19//config: default y
20//config: depends on DD 20//config: depends on DD
21//config: help 21//config: help
22//config: Sending a SIGUSR1 signal to a running `dd' process makes it 22//config: Sending a SIGUSR1 signal to a running `dd' process makes it
23//config: print to standard error the number of records read and written 23//config: print to standard error the number of records read and written
24//config: so far, then to resume copying. 24//config: so far, then to resume copying.
25//config: 25//config:
26//config: $ dd if=/dev/zero of=/dev/null & 26//config: $ dd if=/dev/zero of=/dev/null &
27//config: $ pid=$!; kill -USR1 $pid; sleep 1; kill $pid 27//config: $ pid=$!; kill -USR1 $pid; sleep 1; kill $pid
28//config: 10899206+0 records in 28//config: 10899206+0 records in
29//config: 10899206+0 records out 29//config: 10899206+0 records out
30//config: 30//config:
31//config:config FEATURE_DD_THIRD_STATUS_LINE 31//config:config FEATURE_DD_THIRD_STATUS_LINE
32//config: bool "Enable the third status line upon signal" 32//config: bool "Enable the third status line upon signal"
33//config: default y 33//config: default y
34//config: depends on DD && FEATURE_DD_SIGNAL_HANDLING 34//config: depends on DD && FEATURE_DD_SIGNAL_HANDLING
35//config: help 35//config: help
36//config: Displays a coreutils-like third status line with transferred bytes, 36//config: Displays a coreutils-like third status line with transferred bytes,
37//config: elapsed time and speed. 37//config: elapsed time and speed.
38//config: 38//config:
39//config:config FEATURE_DD_IBS_OBS 39//config:config FEATURE_DD_IBS_OBS
40//config: bool "Enable ibs, obs and conv options" 40//config: bool "Enable ibs, obs and conv options"
41//config: default y 41//config: default y
42//config: depends on DD 42//config: depends on DD
43//config: help 43//config: help
44//config: Enable support for writing a certain number of bytes in and out, 44//config: Enable support for writing a certain number of bytes in and out,
45//config: at a time, and performing conversions on the data stream. 45//config: at a time, and performing conversions on the data stream.
46//config: 46//config:
47//config:config FEATURE_DD_STATUS 47//config:config FEATURE_DD_STATUS
48//config: bool "Enable status display options" 48//config: bool "Enable status display options"
49//config: default y 49//config: default y
50//config: depends on DD 50//config: depends on DD
51//config: help 51//config: help
52//config: Enable support for status=noxfer/none option. 52//config: Enable support for status=noxfer/none option.
53 53
54//applet:IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd)) 54//applet:IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd))
55 55