diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-04-27 01:31:43 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-04-27 01:31:43 +0000 |
commit | c24cbf98b60bd5356cb3ccb3d1a024c21d999a8a (patch) | |
tree | 8a9352d2558a97ccbc65490a28d66ea39bc4347e /include/usage.h | |
parent | 66db395620f58d80ff1d4a76b133c8432a5f9cd1 (diff) | |
download | busybox-w32-c24cbf98b60bd5356cb3ccb3d1a024c21d999a8a.tar.gz busybox-w32-c24cbf98b60bd5356cb3ccb3d1a024c21d999a8a.tar.bz2 busybox-w32-c24cbf98b60bd5356cb3ccb3d1a024c21d999a8a.zip |
Support noerror option
git-svn-id: svn://busybox.net/trunk/busybox@4684 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/usage.h')
-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 ad34dfcff..d0f3dfc99 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -228,7 +228,7 @@ | |||
228 | 228 | ||
229 | #define dd_trivial_usage \ | 229 | #define dd_trivial_usage \ |
230 | "[if=FILE] [of=FILE] [bs=N] [count=N] [skip=N]\n" \ | 230 | "[if=FILE] [of=FILE] [bs=N] [count=N] [skip=N]\n" \ |
231 | "\t [seek=N] [conv=notrunc|sync]" | 231 | "\t [seek=N] [conv=notrunc|noerror|sync]" |
232 | #define dd_full_usage \ | 232 | #define dd_full_usage \ |
233 | "Copy a file, converting and formatting according to options\n\n" \ | 233 | "Copy a file, converting and formatting according to options\n\n" \ |
234 | "\tif=FILE\t\tread from FILE instead of stdin\n" \ | 234 | "\tif=FILE\t\tread from FILE instead of stdin\n" \ |
@@ -238,6 +238,7 @@ | |||
238 | "\tskip=N\t\tskip N input blocks\n" \ | 238 | "\tskip=N\t\tskip N input blocks\n" \ |
239 | "\tseek=N\t\tskip N output blocks\n" \ | 239 | "\tseek=N\t\tskip N output blocks\n" \ |
240 | "\tconv=notrunc\tdon't truncate output file\n" \ | 240 | "\tconv=notrunc\tdon't truncate output file\n" \ |
241 | "\tconv=noerror\tcontinue after read errors\n" \ | ||
241 | "\tconv=sync\tpad blocks with zeros\n" \ | 242 | "\tconv=sync\tpad blocks with zeros\n" \ |
242 | "\n" \ | 243 | "\n" \ |
243 | "Numbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024),\n" \ | 244 | "Numbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024),\n" \ |