• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

man/H03-Nov-2018-147114

src/H03-Nov-2018-1,6371,060

.gitignoreH A D03-Nov-2018312 2524

.travis.ymlH A D03-Nov-201868 43

AUTHORSH A D03-Nov-2018665 2219

COPYINGH A D03-Nov-201817.7 KiB340281

ChangeLogH A D03-Nov-201814 KiB663340

INSTALLH A D03-Nov-201815.6 KiB376292

LICENSEH A D03-Nov-2018709 1612

Makefile.amH A D03-Nov-201818 21

READMEH A D03-Nov-20183 KiB11063

README.mdH A D03-Nov-20183.3 KiB11774

autogen.shH A D03-Nov-201832 21

configure.acH A D03-Nov-20182.3 KiB9687

README

1=== tio - a simple TTY terminal I/O application ===
2
3
41. Introduction
5
6    tio is a simple TTY terminal application which features a straightforward
7    commandline interface to easily connect to TTY devices for basic
8    input/output.
9
10    It was created because the author needed a simple no-nonsense TTY terminal
11    application to easily connect to various terminal TTY devices.
12
13
142. Usage
15
16    The commandline interface is straightforward as reflected in the output
17    from 'tio --help':
18
19
20        Usage: tio [<options>] <tty device>
21
22        Options:
23          -b, --baudrate <bps>        Baud rate (default: 115200)
24          -d, --databits 5|6|7|8      Data bits (default: 8)
25          -f, --flow hard|soft|none   Flow control (default: none)
26          -s, --stopbits 1|2          Stop bits (default: 1)
27          -p, --parity even|odd|none  Parity (default: none)
28          -o, --output-delay <ms>     Output delay (default: 0)
29          -n, --no-autoconnect        Disable automatic connect
30          -l, --log <filename>        Log to file
31          -m, --map <flags>           Map special characters
32          -v, --version               Display version
33          -h, --help                  Display help
34
35        In session, press ctrl-t q to quit.
36
37
38    The only option which requires a bit of elaboration is perhaps the
39    --no-autoconnect option.
40
41    By default tio automatically connects to the provided device if present.
42    If the device is not present, it will wait for it to appear and then
43    connect. If the connection is lost (eg. device is unplugged), it will wait
44    for the device to reappear and then reconnect. However, if the
45    --no-autoconnect option is provided, tio will exit if the device is not
46    present or an established connection is lost.
47
48    Tio features full bash autocompletion support.
49
50    Tio also supports various key commands. Press ctrl-t ? to list the
51    available key commands.
52
53    See the tio man page for more details.
54
55
563. Installation
57
58    The latest release version is available at https://tio.github.io
59
60
613.1 Installation using release tarball
62
63    Install steps:
64
65     $ ./configure
66     $ make
67     $ make install
68
69    See INSTALL file for more installation details.
70
71
723.2 Installation using package
73
74    Tio comes prepackaged for various GNU/Linux distributions. Visit
75    https://tio.github.io for package installation details.
76
77
784. Contributing
79
80    Tio is open source. All contributions (bug fixes, doc, ideas, etc.) are
81    welcome. Visit the tio GitHub page to access latest source code, create
82    pull requests, add issues etc..
83
84    GitHub: https://github.com/tio/tio
85
86    Also, if you find this free open source software useful please consider
87    making a donation: https://www.paypal.me/lundmar
88
89
905. Support
91
92    Submit bug reports via GitHub: https://github.com/tio/tio/issues
93
94
956. Website
96
97    Visit https://tio.github.io
98
99
1007. License
101
102    Tio is GPLv2+. See COPYING file for license details.
103
104
1058. Authors
106
107    Created by Martin Lund <martin.lund@keep-it-simple.com>
108
109    See the AUTHORS file for full list of authors.
110

README.md

1# tio - a simple TTY terminal I/O application
2
3[![Build Status](https://travis-ci.org/tio/tio.svg?branch=master)](https://travis-ci.org/tio/tio)
4[![Snap Status](https://build.snapcraft.io/badge/tio/tio.snapcraft.svg)](https://build.snapcraft.io/user/tio/tio.snapcraft)
5
6## 1. Introduction
7
8tio is a simple TTY terminal application which features a straightforward
9commandline interface to easily connect to TTY devices for basic input/output.
10
11It was created because the author needed a simple no-nonsense TTY terminal
12application to easily connect to various terminal TTY devices.
13
14<p align="center">
15<img src="https://tio.github.io/images/tio-demo.gif">
16</p>
17
18
19## 2. Usage
20
21The commandline interface is straightforward as reflected in the output from
22'tio --help':
23```
24    Usage: tio [<options>] <tty-device>
25
26    Options:
27      -b, --baudrate <bps>        Baud rate (default: 115200)
28      -d, --databits 5|6|7|8      Data bits (default: 8)
29      -f, --flow hard|soft|none   Flow control (default: none)
30      -s, --stopbits 1|2          Stop bits (default: 1)
31      -p, --parity odd|even|none  Parity (default: none)
32      -o, --output-delay <ms>     Output delay (default: 0)
33      -n, --no-autoconnect        Disable automatic connect
34      -e, --local-echo            Do local echo
35      -l, --log <filename>        Log to file
36      -m, --map <flags>           Map special characters
37      -v, --version               Display version
38      -h, --help                  Display help
39
40    See the man page for list of supported mapping flags.
41
42    In session, press ctrl-t q to quit.
43```
44
45The only option which requires a bit of elaboration is perhaps the
46`--no-autoconnect` option.
47
48By default tio automatically connects to the provided device if present.  If
49the device is not present, it will wait for it to appear and then connect. If
50the connection is lost (eg. device is unplugged), it will wait for the device
51to reappear and then reconnect. However, if the `--no-autoconnect` option is
52provided, tio will exit if the device is not present or an established
53connection is lost.
54
55Tio features full bash autocompletion support.
56
57Tio also supports various key commands. Press ctrl-t ? to list the available
58key commands.
59
60See the tio man page for more details.
61
62
63## 3. Installation
64
65The latest release version is available at https://tio.github.io
66
67### 3.1 Installation using release tarball
68
69Install steps:
70```
71     $ ./configure
72     $ make
73     $ make install
74```
75See INSTALL file for more installation details.
76
77### 3.2 Installation using package
78
79Tio comes prepackaged for various GNU/Linux distributions. Visit
80https://tio.github.io for package installation details.
81
82
83## 4. Contributing
84
85Tio is open source. All contributions (bug fixes, doc, ideas, etc.) are
86welcome. Visit the tio GitHub page to access latest source code, create pull
87requests, add issues etc..
88
89GitHub: https://github.com/tio/tio
90
91Also, if you find this free open source software useful please consider making
92a donation:
93
94[![Donate](https://www.paypal.com/en_US/i/btn/x-click-but21.gif)](https://www.paypal.me/lundmar)
95
96
97## 5. Support
98
99Submit bug reports via GitHub: https://github.com/tio/tio/issues
100
101
102## 6. Website
103
104Visit https://tio.github.io
105
106
107## 7. License
108
109Tio is GPLv2+. See COPYING file for license details.
110
111
112## 8. Authors
113
114Created by Martin Lund \<martin.lund@keep-it-simple.com>
115
116See the AUTHORS file for full list of authors.
117