blob: 88ada91a63fa9d3217f95a4521bcd439dad756d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
PIPEFILE="pipe.$$"
control_c()
# run if user hits control-c
{
echo -en "\n*** Ouch! Exiting ***\n"
rm -f ${PIPEFILE}
exit $?
}
P=$1
PORT=$((P))
if [ ${PORT} -lt 1 ]; then
echo "usage: $0 <port>" 1>&2
exit 1
fi
echo "register Ctrl-C"
trap control_c SIGINT
echo "make pipe"
mknod ${PIPEFILE} p
echo "start client"
cat ${PIPEFILE} | nc -w 10 localhost ${PORT} > ${PIPEFILE}
echo "client quit"
rm ${PIPEFILE}
|