diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-12-13 02:43:50 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-12-13 02:43:50 +0000 |
commit | 02d7cbfe92a94d51d2c9b11bab3dc6fe2cec7e89 (patch) | |
tree | 0f360f59ce41caaef1c123a69b3a88aa14c3e6e2 /include/usage.h | |
parent | f03c933e473760cb3776aee8283ecb3e4bddf097 (diff) | |
download | busybox-w32-02d7cbfe92a94d51d2c9b11bab3dc6fe2cec7e89.tar.gz busybox-w32-02d7cbfe92a94d51d2c9b11bab3dc6fe2cec7e89.tar.bz2 busybox-w32-02d7cbfe92a94d51d2c9b11bab3dc6fe2cec7e89.zip |
New applets, ftpget and ftpput
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index d3c1e5072..3b519e65d 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -602,6 +602,27 @@ | |||
602 | "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n" \ | 602 | "\t-m\tActivates MINIX-like \"mode not cleared\" warnings\n" \ |
603 | "\t-f\tForce file system check." | 603 | "\t-f\tForce file system check." |
604 | 604 | ||
605 | #define ftpget_trivial_usage \ | ||
606 | "[options] remote-host local-directory remote-file" | ||
607 | #define ftpget_full_usage \ | ||
608 | "Retrieve a remote file via FTP.\n\n" \ | ||
609 | "Options:\n" \ | ||
610 | "\t-c, --continue Continue a previous transfer\n" \ | ||
611 | "\t-v, --verbose Verbose\n" \ | ||
612 | "\t-u, --username Username to be used\n" \ | ||
613 | "\t-p, --password Password to be used\n" \ | ||
614 | "\t-P, --port Port number to be used\n" | ||
615 | |||
616 | #define ftpput_trivial_usage \ | ||
617 | "[options] remote-host remote-directory local-file" | ||
618 | #define ftpput_full_usage \ | ||
619 | "Store a local file on a remote machine via FTP.\n\n" \ | ||
620 | "Options:\n" \ | ||
621 | "\t-v, --verbose Verbose\n" \ | ||
622 | "\t-u, --username Username to be used\n" \ | ||
623 | "\t-p, --password Password to be used\n" \ | ||
624 | "\t-P, --port Port number to be used\n" | ||
625 | |||
605 | #define getopt_trivial_usage \ | 626 | #define getopt_trivial_usage \ |
606 | "[OPTIONS]..." | 627 | "[OPTIONS]..." |
607 | #define getopt_full_usage \ | 628 | #define getopt_full_usage \ |