From 74f22a7d5cb6ed03f00c261fb4e28b411f1c4c0a Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 17 Oct 2018 16:21:37 -0700 Subject: Some more --help consistency. From eyeballing the output of for i in `./toybox | tr " " "\n"` ; do ./toybox $i --help ; done | \ grep '^-' | grep -v "\t" --- toys/net/microcom.c | 4 ++-- toys/net/netstat.c | 22 +++++++++++----------- toys/net/ping.c | 22 +++++++++++----------- 3 files changed, 24 insertions(+), 24 deletions(-) (limited to 'toys/net') diff --git a/toys/net/microcom.c b/toys/net/microcom.c index 62fe85e6..7311e9d7 100644 --- a/toys/net/microcom.c +++ b/toys/net/microcom.c @@ -12,8 +12,8 @@ config MICROCOM Simple serial console. - -s Set baud rate to SPEED - -X Ignore ^@ (send break) and ^] (exit). + -s Set baud rate to SPEED + -X Ignore ^@ (send break) and ^] (exit). */ #define FOR_microcom diff --git a/toys/net/netstat.c b/toys/net/netstat.c index 7d672488..7bebb327 100644 --- a/toys/net/netstat.c +++ b/toys/net/netstat.c @@ -14,17 +14,17 @@ config NETSTAT Display networking information. Default is netsat -tuwx - -r routing table - -a all sockets (not just connected) - -l listening server sockets - -t TCP sockets - -u UDP sockets - -w raw sockets - -x unix sockets - -e extended info - -n don't resolve names - -W wide display - -p PID/Program name of sockets + -r routing table + -a all sockets (not just connected) + -l listening server sockets + -t TCP sockets + -u UDP sockets + -w raw sockets + -x unix sockets + -e extended info + -n don't resolve names + -W wide display + -p show PID/program name of sockets */ #define FOR_netstat diff --git a/toys/net/ping.c b/toys/net/ping.c index b21abb7b..752879a2 100644 --- a/toys/net/ping.c +++ b/toys/net/ping.c @@ -27,17 +27,17 @@ config PING echo it receives back, with round trip time. Returns true if host alive. Options: - -4, -6 Force IPv4 or IPv6 - -c CNT Send CNT many packets (default 3, 0 = infinite) - -f Flood (print . and \b to show drops, default -c 15 -i 0.2) - -i TIME Interval between packets (default 1, need root for < .2) - -I IFACE/IP Source interface or address - -m MARK Tag outgoing packets using SO_MARK - -q Quiet (stops after one returns true if host is alive) - -s SIZE Data SIZE in bytes (default 56) - -t TTL Set Time To Live (number of hops) - -W SEC Seconds to wait for response after last -c packet (default 3) - -w SEC Exit after this many seconds + -4, -6 Force IPv4 or IPv6 + -c CNT Send CNT many packets (default 3, 0 = infinite) + -f Flood (print . and \b to show drops, default -c 15 -i 0.2) + -i TIME Interval between packets (default 1, need root for < .2) + -I IFACE/IP Source interface or address + -m MARK Tag outgoing packets using SO_MARK + -q Quiet (stops after one returns true if host is alive) + -s SIZE Data SIZE in bytes (default 56) + -t TTL Set Time To Live (number of hops) + -W SEC Seconds to wait for response after last -c packet (default 3) + -w SEC Exit after this many seconds */ #define FOR_ping -- cgit v1.2.3