diff options
author | Denys Vlasenko | 2021-08-15 23:05:30 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-08-15 23:05:30 +0200 |
commit | 1ce60699c15e5fc2ecff5db40ea1e1ae583b8b34 (patch) | |
tree | 60ce15f658522571a74d5734f734613aac953abc | |
parent | b259415b51e73cf268a6cb22f0105756f7197781 (diff) | |
download | busybox-1ce60699c15e5fc2ecff5db40ea1e1ae583b8b34.zip busybox-1ce60699c15e5fc2ecff5db40ea1e1ae583b8b34.tar.gz |
dd: tweak --help
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index a243f71..06c1b7b 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -56,8 +56,8 @@ //kbuild:lib-$(CONFIG_DD) += dd.o //usage:#define dd_trivial_usage -//usage: "[if=FILE] [of=FILE] [" IF_FEATURE_DD_IBS_OBS("ibs=N obs=N/") "bs=N] [count=N] [skip=N] [seek=N]\n" -//usage: IF_FEATURE_DD_IBS_OBS( +//usage: "[if=FILE] [of=FILE] [" IF_FEATURE_DD_IBS_OBS("ibs=N obs=N/") "bs=N] [count=N] [skip=N] [seek=N]" +//usage: IF_FEATURE_DD_IBS_OBS("\n" //usage: " [conv=notrunc|noerror|sync|fsync]\n" //usage: " [iflag=skip_bytes|count_bytes|fullblock|direct] [oflag=seek_bytes|append|direct]" //usage: ) |