diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-12-13 00:01:44 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-12-13 00:01:44 +0000 |
commit | f03c933e473760cb3776aee8283ecb3e4bddf097 (patch) | |
tree | ba401fac3566fc280a93c7933e4c33767acd99ee /include/usage.h | |
parent | 9130c8584783a4449b01cce2a780add080f23dd9 (diff) | |
download | busybox-w32-f03c933e473760cb3776aee8283ecb3e4bddf097.tar.gz busybox-w32-f03c933e473760cb3776aee8283ecb3e4bddf097.tar.bz2 busybox-w32-f03c933e473760cb3776aee8283ecb3e4bddf097.zip |
New applet, nameif by Nick Fedchik and myself.
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index f484ee9ef..d3c1e5072 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1453,6 +1453,19 @@ | |||
1453 | #define mv_example_usage \ | 1453 | #define mv_example_usage \ |
1454 | "$ mv /tmp/foo /bin/bar\n" | 1454 | "$ mv /tmp/foo /bin/bar\n" |
1455 | 1455 | ||
1456 | #define nameif_trivial_usage \ | ||
1457 | "[OPTIONS] [{IFNAME MACADDR}]" | ||
1458 | #define nameif_full_usage \ | ||
1459 | "Nameif renaming network interface while it in the down state.\n\n" \ | ||
1460 | "Options:\n" \ | ||
1461 | "\t-c FILE\t\tUse another configuration file (default is /etc/mactab)\n" \ | ||
1462 | "\t-s\t\tUse syslog (LOCAL0 facility).\n" \ | ||
1463 | "\tIFNAME MACADDR\tnew_interface_name interface_mac_address\n" | ||
1464 | #define nameif_example_usage \ | ||
1465 | "$ nameif -s dmz0 00:A0:C9:8C:F6:3F\n" \ | ||
1466 | " or\n" \ | ||
1467 | "$ nameif -c /etc/my_mactab_file\n" \ | ||
1468 | |||
1456 | #define nc_trivial_usage \ | 1469 | #define nc_trivial_usage \ |
1457 | "[OPTIONS] [IP] [port]" | 1470 | "[OPTIONS] [IP] [port]" |
1458 | #define nc_full_usage \ | 1471 | #define nc_full_usage \ |