diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-08 00:49:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-08 00:49:48 +0200 |
commit | 73adef14b25533b71238362da75bfb482d43d98b (patch) | |
tree | 0819598b5db38bd882655a472ac002260ebca396 /networking | |
parent | 90ad4ba9db2927d6b616993cc27274bbc17d51a9 (diff) | |
download | busybox-73adef14b25533b71238362da75bfb482d43d98b.tar.gz |
ipcalc: trim help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ipcalc.c | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/networking/ipcalc.c b/networking/ipcalc.c index 4f192e0a5..83937828f 100644 --- a/networking/ipcalc.c +++ b/networking/ipcalc.c @@ -39,26 +39,14 @@ //usage: "[OPTIONS] ADDRESS" //usage: IF_FEATURE_IPCALC_FANCY("[/PREFIX]") " [NETMASK]" //usage:#define ipcalc_full_usage "\n\n" -//usage: "Calculate IP network settings from a IP address\n" -//usage: IF_FEATURE_IPCALC_LONG_OPTIONS( -//usage: "\n -b,--broadcast Display calculated broadcast address" -//usage: "\n -n,--network Display calculated network address" -//usage: "\n -m,--netmask Display default netmask for IP" +//usage: "Calculate and display network settings from IP address\n" +//usage: "\n -b Broadcast address" +//usage: "\n -n Network address" +//usage: "\n -m Default netmask for IP" //usage: IF_FEATURE_IPCALC_FANCY( -//usage: "\n -p,--prefix Display the prefix for IP/NETMASK" -//usage: "\n -h,--hostname Display first resolved host name" -//usage: "\n -s,--silent Don't ever display error messages" -//usage: ) -//usage: ) -//usage: IF_NOT_FEATURE_IPCALC_LONG_OPTIONS( -//usage: "\n -b Display calculated broadcast address" -//usage: "\n -n Display calculated network address" -//usage: "\n -m Display default netmask for IP" -//usage: IF_FEATURE_IPCALC_FANCY( -//usage: "\n -p Display the prefix for IP/NETMASK" -//usage: "\n -h Display first resolved host name" -//usage: "\n -s Don't ever display error messages" -//usage: ) +//usage: "\n -p Prefix for IP/NETMASK" +//usage: "\n -h Resolved host name" +//usage: "\n -s No error messages" //usage: ) #include "libbb.h" |