diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-03-19 12:22:57 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-03-19 12:22:57 +0100 |
commit | cc1bb603e8243654c6941a2eacaf900ef3fcc55d (patch) | |
tree | 2545d88edde293bf66de45e441568dc52428fcb3 | |
parent | 78a3b6739c0152f188eba56ec17e770a11b54b60 (diff) | |
download | busybox-w32-cc1bb603e8243654c6941a2eacaf900ef3fcc55d.tar.gz busybox-w32-cc1bb603e8243654c6941a2eacaf900ef3fcc55d.tar.bz2 busybox-w32-cc1bb603e8243654c6941a2eacaf900ef3fcc55d.zip |
ftp{get,put}: tweak help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ftpgetput.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index abdf94c45..8283366cc 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c | |||
@@ -16,37 +16,37 @@ | |||
16 | //usage:#define ftpget_trivial_usage | 16 | //usage:#define ftpget_trivial_usage |
17 | //usage: "[OPTIONS] HOST [LOCAL_FILE] REMOTE_FILE" | 17 | //usage: "[OPTIONS] HOST [LOCAL_FILE] REMOTE_FILE" |
18 | //usage:#define ftpget_full_usage "\n\n" | 18 | //usage:#define ftpget_full_usage "\n\n" |
19 | //usage: "Retrieve a remote file via FTP\n" | 19 | //usage: "Download a file via FTP\n" |
20 | //usage: IF_FEATURE_FTPGETPUT_LONG_OPTIONS( | 20 | //usage: IF_FEATURE_FTPGETPUT_LONG_OPTIONS( |
21 | //usage: "\n -c,--continue Continue previous transfer" | 21 | //usage: "\n -c,--continue Continue previous transfer" |
22 | //usage: "\n -v,--verbose Verbose" | 22 | //usage: "\n -v,--verbose Verbose" |
23 | //usage: "\n -u,--username Username" | 23 | //usage: "\n -u,--username USER Username" |
24 | //usage: "\n -p,--password Password" | 24 | //usage: "\n -p,--password PASS Password" |
25 | //usage: "\n -P,--port Port number" | 25 | //usage: "\n -P,--port NUM Port" |
26 | //usage: ) | 26 | //usage: ) |
27 | //usage: IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS( | 27 | //usage: IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS( |
28 | //usage: "\n -c Continue previous transfer" | 28 | //usage: "\n -c Continue previous transfer" |
29 | //usage: "\n -v Verbose" | 29 | //usage: "\n -v Verbose" |
30 | //usage: "\n -u Username" | 30 | //usage: "\n -u USER Username" |
31 | //usage: "\n -p Password" | 31 | //usage: "\n -p PASS Password" |
32 | //usage: "\n -P Port number" | 32 | //usage: "\n -P NUM Port" |
33 | //usage: ) | 33 | //usage: ) |
34 | //usage: | 34 | //usage: |
35 | //usage:#define ftpput_trivial_usage | 35 | //usage:#define ftpput_trivial_usage |
36 | //usage: "[OPTIONS] HOST [REMOTE_FILE] LOCAL_FILE" | 36 | //usage: "[OPTIONS] HOST [REMOTE_FILE] LOCAL_FILE" |
37 | //usage:#define ftpput_full_usage "\n\n" | 37 | //usage:#define ftpput_full_usage "\n\n" |
38 | //usage: "Store a local file on a remote machine via FTP\n" | 38 | //usage: "Upload a file to a FTP server\n" |
39 | //usage: IF_FEATURE_FTPGETPUT_LONG_OPTIONS( | 39 | //usage: IF_FEATURE_FTPGETPUT_LONG_OPTIONS( |
40 | //usage: "\n -v,--verbose Verbose" | 40 | //usage: "\n -v,--verbose Verbose" |
41 | //usage: "\n -u,--username Username" | 41 | //usage: "\n -u,--username USER Username" |
42 | //usage: "\n -p,--password Password" | 42 | //usage: "\n -p,--password PASS Password" |
43 | //usage: "\n -P,--port Port number" | 43 | //usage: "\n -P,--port NUM Port" |
44 | //usage: ) | 44 | //usage: ) |
45 | //usage: IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS( | 45 | //usage: IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS( |
46 | //usage: "\n -v Verbose" | 46 | //usage: "\n -v Verbose" |
47 | //usage: "\n -u Username" | 47 | //usage: "\n -u USER Username" |
48 | //usage: "\n -p Password" | 48 | //usage: "\n -p PASS Password" |
49 | //usage: "\n -P Port number" | 49 | //usage: "\n -P NUM Port number" |
50 | //usage: ) | 50 | //usage: ) |
51 | 51 | ||
52 | #include "libbb.h" | 52 | #include "libbb.h" |