diff options
author | Denis Vlasenko | 2007-11-23 09:27:05 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-11-23 09:27:05 +0000 |
commit | f23c3f95e88302923147f159115180da7cf0344e (patch) | |
tree | 572e3ced96291e0d9eec0c1a2f2c9f6a8379f7e9 /include/usage.h | |
parent | fff9b699f19bf4e687b755f3a0faecbe958258a9 (diff) | |
download | busybox-f23c3f95e88302923147f159115180da7cf0344e.zip busybox-f23c3f95e88302923147f159115180da7cf0344e.tar.gz |
arping: fix help text (-i -> -I), and shorten it a bit
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/usage.h b/include/usage.h index 15ef44a..82a1757 100644 --- a/include/usage.h +++ b/include/usage.h @@ -76,7 +76,7 @@ "\n -H hwtype Hardware address type" #define arping_trivial_usage \ - "[-fqbDUA] [-c count] [-w timeout] [-i device] [-s sender] target" + "[-fqbDUA] [-c count] [-w timeout] [-I dev] [-s sender] target" #define arping_full_usage \ "Ping hosts by ARP requests/replies" \ "\n\nOptions:\n" \ @@ -84,13 +84,13 @@ " -q Quiet\n" \ " -b Keep broadcasting, don't go unicast\n" \ " -D Duplicated address detection mode\n" \ - " -U Unsolicited ARP mode, update your neighbours\n" \ - " -A ARP answer mode, update your neighbours\n" \ - " -c count Stop after sending count ARP request packets\n" \ + " -U Unsolicited ARP mode, update your neighbors\n" \ + " -A ARP answer mode, update your neighbors\n" \ + " -c N Stop after sending N ARP requests\n" \ " -w timeout Time to wait for ARP reply, in seconds\n" \ - " -I device Outgoing interface name, default is eth0\n" \ - " -s sender Set specific sender IP address\n" \ - " target Target IP address of ARP request" + " -I dev Interface to use (default eth0)\n" \ + " -s sender Sender IP address\n" \ + " target Target IP address" #define ash_trivial_usage \ "[FILE]...\n" \ |