summaryrefslogtreecommitdiff
path: root/examples/tictactoe/listen.sh
blob: 0318cd2e27c4be98bbbc436d2afb3ddf006a96ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

#mabe not. might be buggier.
#cat board p1out | ncat -lp 1050 > p1in &
#cat board p2out | ncat -lp 1051 > p2in &
echo listening in port 1050 for player 1 and 1051 for player 2

mknod pin p
mknod p1out p
mknod p2out p

cat board p1out | ncat -lp 1050 > pin &
cat board p2out | ncat -lp 1051 > pin &

cat pin | ./game.sh | tee p1out p2out

rm pin
rm p1out
rm p2out