diff options
author | Denys Vlasenko | 2016-07-08 12:52:24 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-07-08 12:52:24 +0200 |
commit | d2f4241d2eafc90cb7e0f985133ab62b24b473f0 (patch) | |
tree | 4227215a9ea6a0583e421ce67b562136565386ba | |
parent | 237bedd499c58034a1355484d6d4d906f0180308 (diff) | |
download | busybox-d2f4241d2eafc90cb7e0f985133ab62b24b473f0.zip busybox-d2f4241d2eafc90cb7e0f985133ab62b24b473f0.tar.gz |
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 3b15507..540218c 100644 --- a/archival/cpio.c +++ b/archival/cpio.c @@ -23,7 +23,7 @@ //config: cpio has 110 bytes of overheads for every stored file. //config: //config: This implementation of cpio can extract cpio archives created in the -//config: "newc" or "crc" format, it cannot create or modify them. +//config: "newc" or "crc" format. //config: //config: Unless you have a specific application which requires cpio, you //config: should probably say N here. @@ -51,10 +51,10 @@ //usage: " [-ti"IF_FEATURE_CPIO_O("o")"]" IF_FEATURE_CPIO_P(" [-p DIR]") //usage: " [EXTR_FILE]..." //usage:#define cpio_full_usage "\n\n" -//usage: "Extract or list files from a cpio archive" +//usage: "Extract (-i) or list (-t) files from a cpio archive" //usage: IF_FEATURE_CPIO_O(", or" -//usage: "\ncreate an archive" IF_FEATURE_CPIO_P(" (-o) or copy files (-p)") -//usage: " using file list on stdin" +//usage: "\ntake file list from stdin and create an archive (-o)" +//usage: IF_FEATURE_CPIO_P(" or copy files (-p)") //usage: ) //usage: "\n" //usage: "\nMain operation mode:" |