diff options
author | Eric Andersen | 2004-03-12 22:07:10 +0000 |
---|---|---|
committer | Eric Andersen | 2004-03-12 22:07:10 +0000 |
commit | 08f59e32c18520455bcc08849d4598286063ee46 (patch) | |
tree | c5ece32ba58c2252d0d0baa69bdce1be645766a0 /include/usage.h | |
parent | ef02f82bcf667ede9790a5de6aa78459529f29e4 (diff) | |
download | busybox-08f59e32c18520455bcc08849d4598286063ee46.zip busybox-08f59e32c18520455bcc08849d4598286063ee46.tar.gz |
Fix awk entry, which was not showing up in BusyBox.txt for some reason
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/include/usage.h b/include/usage.h index 37f8841..ec8f3c8 100644 --- a/include/usage.h +++ b/include/usage.h @@ -59,13 +59,19 @@ "\t-s sender\tSet specific sender IP address\n" \ "\ttarget\t\tTarget IP address of ARP request\n" -#define awk_trivial_usage \ - "[-v var=val][-F sep] { -f progname | 'programtext' } [FILE ...]" -#define awk_full_usage \ +#define ash_trivial_usage \ + "[FILE]...\n" \ + "or: ash -c command [args]...\n" +#define ash_full_usage \ + "The ash shell (command interpreter)" + +#define awk_trivial_usage \ + "[OPTION]... [program-text] [FILE ...]" +#define awk_full_usage \ "Options:\n" \ - "\t-v var=val\tassign value 'val' to variable 'var'\n" \ + "\t-v var=val\t\tassign value 'val' to variable 'var'\n" \ "\t-F sep\t\tuse 'sep' as field separator\n" \ - "\t-f progname\tread program source from file 'progname'\n" + "\t-f progname\t\tread program source from file 'progname'\n" #define basename_trivial_usage \ "FILE [SUFFIX]" @@ -967,7 +973,7 @@ "\t-F FILE\tUse the contents of FILE to specify the hostname" #define hostname_example_usage \ "$ hostname\n" \ - "sage \n" + "sage\n" #ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH #define USAGE_HTTPD_BASIC_AUTH(a) a |