diff options
Diffstat (limited to 'coreutils/stty.c')
-rw-r--r-- | coreutils/stty.c | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c index b6e836364..424d909cf 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -1,24 +1,25 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* stty -- change and print terminal line settings | 2 | /* |
3 | Copyright (C) 1990-1999 Free Software Foundation, Inc. | 3 | * stty -- change and print terminal line settings |
4 | 4 | * Copyright (C) 1990-1999 Free Software Foundation, Inc. | |
5 | Licensed under GPLv2 or later, see file LICENSE in this source tree. | 5 | * |
6 | */ | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
7 | */ | ||
7 | /* Usage: stty [-ag] [-F device] [setting...] | 8 | /* Usage: stty [-ag] [-F device] [setting...] |
8 | 9 | * | |
9 | Options: | 10 | * Options: |
10 | -a Write all current settings to stdout in human-readable form. | 11 | * -a Write all current settings to stdout in human-readable form. |
11 | -g Write all current settings to stdout in stty-readable form. | 12 | * -g Write all current settings to stdout in stty-readable form. |
12 | -F Open and use the specified device instead of stdin | 13 | * -F Open and use the specified device instead of stdin |
13 | 14 | * | |
14 | If no args are given, write to stdout the baud rate and settings that | 15 | * If no args are given, write to stdout the baud rate and settings that |
15 | have been changed from their defaults. Mode reading and changes | 16 | * have been changed from their defaults. Mode reading and changes |
16 | are done on the specified device, or stdin if none was specified. | 17 | * are done on the specified device, or stdin if none was specified. |
17 | 18 | * | |
18 | David MacKenzie <djm@gnu.ai.mit.edu> | 19 | * David MacKenzie <djm@gnu.ai.mit.edu> |
19 | 20 | * | |
20 | Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 | 21 | * Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 |
21 | */ | 22 | */ |
22 | //config:config STTY | 23 | //config:config STTY |
23 | //config: bool "stty (8.6 kb)" | 24 | //config: bool "stty (8.6 kb)" |
24 | //config: default y | 25 | //config: default y |