https://github.com/kizzycode/serialpipe-c
`SerialPipe` is a simple program that can be used to read from/write to a serial device node
https://github.com/kizzycode/serialpipe-c
Last synced: about 2 months ago
JSON representation
`SerialPipe` is a simple program that can be used to read from/write to a serial device node
- Host: GitHub
- URL: https://github.com/kizzycode/serialpipe-c
- Owner: KizzyCode
- Created: 2022-07-04T23:35:28.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-01T12:35:14.000Z (over 1 year ago)
- Last Synced: 2025-02-06T04:44:16.401Z (4 months ago)
- Language: C
- Size: 43.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://opensource.org/licenses/BSD-2-Clause)
[](https://opensource.org/licenses/MIT)# `SerialPipe`
Welcome to `SerialPipe` 🎉`SerialPipe` is a simple program that can be used to read from/write to a serial device node.
## Example
```sh
# Dump /dev/tty.usbmodem21201 @115200 to stdout
spipe /dev/tty.usbmodem21201 115200# Write "Testolope" to /dev/tty.usbmodem21201 @115200 and dump /dev/tty.usbmodem21201 @115200 to stdout
echo "Testolope" | spipe /dev/tty.usbmodem21201 115200# Dump /dev/tty.usbmodem21201 @9600 to the file a.out
spipe /dev/tty.usbmodem21201 9600 > a.out
```## Usage
```sh
spipe path-to-device-node baudrate
```