Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/snaipe/ttysend
A simplistic C utility to send data to other tty/pts.
https://github.com/snaipe/ttysend
Last synced: 21 days ago
JSON representation
A simplistic C utility to send data to other tty/pts.
- Host: GitHub
- URL: https://github.com/snaipe/ttysend
- Owner: Snaipe
- License: mit
- Created: 2016-01-08T11:18:04.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-08T11:18:28.000Z (about 9 years ago)
- Last Synced: 2024-10-31T11:45:15.538Z (2 months ago)
- Language: C
- Homepage:
- Size: 2.93 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ttysend
A simplistic C utility to send data to other tty/pts.
## Compilation
```bash
$ ./autogen.sh
$ mkdir build && cd $_
$ ../configure && make
```## Usage
ttysend [-n|--newline] [-d|--data ] [-i|--input [file]]
-n|--newline: print a newline in the device before exiting.
--data: print the specified string to the device and exit.
--input: print the contents of the file (or stdin if none specified) to the device and exit.
: The path to the desired tty/pty device to send data to.