diff options
author | epoch <epoch@hacking.allowed.org> | 2018-12-16 19:28:39 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2018-12-16 19:28:39 -0600 |
commit | f479b438e6119e83c95b19aaeccd61a8e5eded27 (patch) | |
tree | 726a3916d9128f6c970f49431ef8b27140e49747 /examples/tictactoe/listen.sh | |
parent | 13dd5a6d313a2086647751286ca8315a12c804f1 (diff) | |
download | hackvr-f479b438e6119e83c95b19aaeccd61a8e5eded27.tar.gz hackvr-f479b438e6119e83c95b19aaeccd61a8e5eded27.zip |
fuck if I know. lots of shit. moved files.
Diffstat (limited to 'examples/tictactoe/listen.sh')
-rwxr-xr-x | examples/tictactoe/listen.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/tictactoe/listen.sh b/examples/tictactoe/listen.sh deleted file mode 100755 index 0318cd2..0000000 --- a/examples/tictactoe/listen.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/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 |