diff options
author | Eric Andersen | 2002-04-27 01:31:43 +0000 |
---|---|---|
committer | Eric Andersen | 2002-04-27 01:31:43 +0000 |
commit | ef38b392627b31abf6b99273311d2a155023e73a (patch) | |
tree | 8a9352d2558a97ccbc65490a28d66ea39bc4347e /include | |
parent | aba75460e4ca8415e9dd3b07ed3511126724dbd9 (diff) | |
download | busybox-ef38b392627b31abf6b99273311d2a155023e73a.zip busybox-ef38b392627b31abf6b99273311d2a155023e73a.tar.gz |
Support noerror option
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index ad34dfc..d0f3dfc 100644 --- a/include/usage.h +++ b/include/usage.h @@ -228,7 +228,7 @@ #define dd_trivial_usage \ "[if=FILE] [of=FILE] [bs=N] [count=N] [skip=N]\n" \ - "\t [seek=N] [conv=notrunc|sync]" + "\t [seek=N] [conv=notrunc|noerror|sync]" #define dd_full_usage \ "Copy a file, converting and formatting according to options\n\n" \ "\tif=FILE\t\tread from FILE instead of stdin\n" \ @@ -238,6 +238,7 @@ "\tskip=N\t\tskip N input blocks\n" \ "\tseek=N\t\tskip N output blocks\n" \ "\tconv=notrunc\tdon't truncate output file\n" \ + "\tconv=noerror\tcontinue after read errors\n" \ "\tconv=sync\tpad blocks with zeros\n" \ "\n" \ "Numbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024),\n" \ |