diff options
| author | Christoph Lohmann <20h@r-36.net> | 2015-09-07 22:59:05 +0200 |
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2015-09-07 22:59:05 +0200 |
| commit | aa5d4c3b340d180eb0b375b3b4a923cf91ffb04a (patch) | |
| tree | e9357a3c3d4244654d789b9efd01e02c15e701ee | |
| parent | 080a5ae4252c9c9a9d83b702d8478966ab79326e (diff) | |
| download | st-aa5d4c3b340d180eb0b375b3b4a923cf91ffb04a.tar.gz st-aa5d4c3b340d180eb0b375b3b4a923cf91ffb04a.zip | |
Making st.1 more descriptive about -l and fix -l in st.c.
| -rw-r--r-- | st.1 | 21 | ||||
| -rw-r--r-- | st.c | 2 |
2 files changed, 19 insertions, 4 deletions
| @@ -89,9 +89,24 @@ embeds st within the window identified by | |||
| 89 | .I windowid | 89 | .I windowid |
| 90 | .TP | 90 | .TP |
| 91 | .BI \-l " line" | 91 | .BI \-l " line" |
| 92 | use a tty line instead of a pseudo terminal. | 92 | use a tty |
| 93 | When this flag is used | 93 | .I line |
| 94 | remaining arguments are used as flags for stty. | 94 | instead of a pseudo terminal. |
| 95 | .I line | ||
| 96 | should be a (pseudo-)serial device (e.g. /dev/ttySO on Linux for serial port | ||
| 97 | 0). | ||
| 98 | When this flag is given | ||
| 99 | remaining arguments are used as flags for | ||
| 100 | .BR stty(1). | ||
| 101 | By default st initializes the serial line to 8 bits, no parity, 1 stop bit | ||
| 102 | and a 38400 baud rate. The speed is set by appending it as last argument | ||
| 103 | (e.g. 'st -l 115200'). Arguments before the last one are | ||
| 104 | .BR stty(1) | ||
| 105 | flags. If you want to set odd parity on 115200 baud use for example 'st -l | ||
| 106 | parenb parodd 115200'. Set the number of bits by using for example 'st -l cs7 | ||
| 107 | 115200'. See | ||
| 108 | .BR stty(1) | ||
| 109 | for more arguments and cases. | ||
| 95 | .TP | 110 | .TP |
| 96 | .B \-v | 111 | .B \-v |
| 97 | prints version information to stderr, then exits. | 112 | prints version information to stderr, then exits. |
| @@ -4294,7 +4294,7 @@ usage(void) | |||
| 4294 | " [-i] [-t title] [-T title] [-w windowid] [-e command ...]" | 4294 | " [-i] [-t title] [-T title] [-w windowid] [-e command ...]" |
| 4295 | " [command ...]\n" | 4295 | " [command ...]\n" |
| 4296 | " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n" | 4296 | " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n" |
| 4297 | " [-i] [-t title] [-T title] [-w windowid] [-l line]" | 4297 | " [-i] [-t title] [-T title] [-w windowid] -l line" |
| 4298 | " [stty_args ...]\n", | 4298 | " [stty_args ...]\n", |
| 4299 | argv0); | 4299 | argv0); |
| 4300 | } | 4300 | } |
