diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-08 12:52:24 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-08 12:52:24 +0200 |
commit | d2f4241d2eafc90cb7e0f985133ab62b24b473f0 (patch) | |
tree | 4227215a9ea6a0583e421ce67b562136565386ba | |
parent | 237bedd499c58034a1355484d6d4d906f0180308 (diff) | |
download | busybox-w32-d2f4241d2eafc90cb7e0f985133ab62b24b473f0.tar.gz busybox-w32-d2f4241d2eafc90cb7e0f985133ab62b24b473f0.tar.bz2 busybox-w32-d2f4241d2eafc90cb7e0f985133ab62b24b473f0.zip |
cpio: tweak help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/cpio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/cpio.c b/archival/cpio.c index 3b1550720..540218cb2 100644 --- a/archival/cpio.c +++ b/archival/cpio.c | |||
@@ -23,7 +23,7 @@ | |||
23 | //config: cpio has 110 bytes of overheads for every stored file. | 23 | //config: cpio has 110 bytes of overheads for every stored file. |
24 | //config: | 24 | //config: |
25 | //config: This implementation of cpio can extract cpio archives created in the | 25 | //config: This implementation of cpio can extract cpio archives created in the |
26 | //config: "newc" or "crc" format, it cannot create or modify them. | 26 | //config: "newc" or "crc" format. |
27 | //config: | 27 | //config: |
28 | //config: Unless you have a specific application which requires cpio, you | 28 | //config: Unless you have a specific application which requires cpio, you |
29 | //config: should probably say N here. | 29 | //config: should probably say N here. |
@@ -51,10 +51,10 @@ | |||
51 | //usage: " [-ti"IF_FEATURE_CPIO_O("o")"]" IF_FEATURE_CPIO_P(" [-p DIR]") | 51 | //usage: " [-ti"IF_FEATURE_CPIO_O("o")"]" IF_FEATURE_CPIO_P(" [-p DIR]") |
52 | //usage: " [EXTR_FILE]..." | 52 | //usage: " [EXTR_FILE]..." |
53 | //usage:#define cpio_full_usage "\n\n" | 53 | //usage:#define cpio_full_usage "\n\n" |
54 | //usage: "Extract or list files from a cpio archive" | 54 | //usage: "Extract (-i) or list (-t) files from a cpio archive" |
55 | //usage: IF_FEATURE_CPIO_O(", or" | 55 | //usage: IF_FEATURE_CPIO_O(", or" |
56 | //usage: "\ncreate an archive" IF_FEATURE_CPIO_P(" (-o) or copy files (-p)") | 56 | //usage: "\ntake file list from stdin and create an archive (-o)" |
57 | //usage: " using file list on stdin" | 57 | //usage: IF_FEATURE_CPIO_P(" or copy files (-p)") |
58 | //usage: ) | 58 | //usage: ) |
59 | //usage: "\n" | 59 | //usage: "\n" |
60 | //usage: "\nMain operation mode:" | 60 | //usage: "\nMain operation mode:" |