diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-14 18:47:33 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-14 18:47:33 +0000 |
commit | 98e599ca063bbba13e0806d54f8caa9b0d10ba56 (patch) | |
tree | 69f3fb0fcada0398c27cc3d6e26a25144876fff4 /applets | |
parent | ec455953008d08f588fe0c0bd9df4278cd188315 (diff) | |
download | busybox-w32-98e599ca063bbba13e0806d54f8caa9b0d10ba56.tar.gz busybox-w32-98e599ca063bbba13e0806d54f8caa9b0d10ba56.tar.bz2 busybox-w32-98e599ca063bbba13e0806d54f8caa9b0d10ba56.zip |
Commit Vladimir's latest version of stty.c. Nice work.
-Erik
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/applets/usage.c b/applets/usage.c index bdd4d3d83..7f998086b 100644 --- a/applets/usage.c +++ b/applets/usage.c | |||
@@ -1243,6 +1243,20 @@ const char sort_usage[] = | |||
1243 | ; | 1243 | ; |
1244 | #endif | 1244 | #endif |
1245 | 1245 | ||
1246 | #if defined BB_STTY | ||
1247 | const char stty_usage[] = | ||
1248 | "stty [-a|g] [-F device] [SETTING]..." | ||
1249 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
1250 | "\n\nWithout arguments, prints baud rate, line discipline," | ||
1251 | "\nand deviations from stty sane." | ||
1252 | "\n -F device open and use the specified device instead of stdin" | ||
1253 | "\n -a print all current settings in human-readable form. Or" | ||
1254 | "\n -g print in a stty-readable form" | ||
1255 | "\n [SETTING] see in documentation" | ||
1256 | #endif | ||
1257 | ; | ||
1258 | #endif | ||
1259 | |||
1246 | #if defined BB_SWAPONOFF | 1260 | #if defined BB_SWAPONOFF |
1247 | const char swapoff_usage[] = | 1261 | const char swapoff_usage[] = |
1248 | "swapoff [OPTION] [device]" | 1262 | "swapoff [OPTION] [device]" |