summaryrefslogtreecommitdiffstats
path: root/tools/test_port
blob: dd1798a4dcb94242027b19dc46d4d7b53d13e7e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/bash

PORT=/dev/pts/2

sleep 1

echo "write to $PORT"
echo "a" > $PORT

echo "read from $PORT"
cat $PORT