diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-07 21:11:23 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-07 21:11:23 +0000 |
commit | 643dcf00e32bb131b8a8b77ef570289ed27dae57 (patch) | |
tree | 897973c31c4a7249c836a59464469b5efea756d4 | |
parent | ed23adce727656f55d59675a9674c33d9b2d3530 (diff) | |
download | busybox-w32-643dcf00e32bb131b8a8b77ef570289ed27dae57.tar.gz busybox-w32-643dcf00e32bb131b8a8b77ef570289ed27dae57.tar.bz2 busybox-w32-643dcf00e32bb131b8a8b77ef570289ed27dae57.zip |
dd: update usage text
-rw-r--r-- | include/usage.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/usage.h b/include/usage.h index 142d7c21b..dbe403d13 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -634,7 +634,7 @@ | |||
634 | 634 | ||
635 | #define dd_trivial_usage \ | 635 | #define dd_trivial_usage \ |
636 | "[if=FILE] [of=FILE] " USE_FEATURE_DD_IBS_OBS("[ibs=N] [obs=N] ") "[bs=N] [count=N] [skip=N]\n" \ | 636 | "[if=FILE] [of=FILE] " USE_FEATURE_DD_IBS_OBS("[ibs=N] [obs=N] ") "[bs=N] [count=N] [skip=N]\n" \ |
637 | " [seek=N]" USE_FEATURE_DD_IBS_OBS(" [conv=notrunc|noerror|sync]") | 637 | " [seek=N]" USE_FEATURE_DD_IBS_OBS(" [conv=notrunc|noerror|sync|fsync]") |
638 | #define dd_full_usage \ | 638 | #define dd_full_usage \ |
639 | "Copy a file with converting and formatting\n" \ | 639 | "Copy a file with converting and formatting\n" \ |
640 | "\nOptions:" \ | 640 | "\nOptions:" \ |
@@ -642,16 +642,20 @@ | |||
642 | "\n of=FILE Write to FILE instead of stdout" \ | 642 | "\n of=FILE Write to FILE instead of stdout" \ |
643 | "\n bs=N Read and write N bytes at a time" \ | 643 | "\n bs=N Read and write N bytes at a time" \ |
644 | USE_FEATURE_DD_IBS_OBS( \ | 644 | USE_FEATURE_DD_IBS_OBS( \ |
645 | "\n ibs=N Read N bytes at a time") \ | 645 | "\n ibs=N Read N bytes at a time" \ |
646 | ) \ | ||
646 | USE_FEATURE_DD_IBS_OBS( \ | 647 | USE_FEATURE_DD_IBS_OBS( \ |
647 | "\n obs=N Write N bytes at a time") \ | 648 | "\n obs=N Write N bytes at a time" \ |
649 | ) \ | ||
648 | "\n count=N Copy only N input blocks" \ | 650 | "\n count=N Copy only N input blocks" \ |
649 | "\n skip=N Skip N input blocks" \ | 651 | "\n skip=N Skip N input blocks" \ |
650 | "\n seek=N Skip N output blocks" \ | 652 | "\n seek=N Skip N output blocks" \ |
651 | USE_FEATURE_DD_IBS_OBS( \ | 653 | USE_FEATURE_DD_IBS_OBS( \ |
652 | "\n conv=notrunc Don't truncate output file" \ | 654 | "\n conv=notrunc Don't truncate output file" \ |
653 | "\n conv=noerror Continue after read errors" \ | 655 | "\n conv=noerror Continue after read errors" \ |
654 | "\n conv=sync Pad blocks with zeros") \ | 656 | "\n conv=sync Pad blocks with zeros" \ |
657 | "\n conv=fsync Physically write data out before finishing" \ | ||
658 | ) \ | ||
655 | "\n" \ | 659 | "\n" \ |
656 | "\nNumbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024)," \ | 660 | "\nNumbers may be suffixed by c (x1), w (x2), b (x512), kD (x1000), k (x1024)," \ |
657 | "\nMD (x1000000), M (x1048576), GD (x1000000000) or G (x1073741824)" \ | 661 | "\nMD (x1000000), M (x1048576), GD (x1000000000) or G (x1073741824)" \ |