Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.