blob: 48d107c0e38ce94585d55150f5563f42c3fd3d58 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
 | #!/bin/sh
# just need to get some way for these to coproc
if ! which wordsearch >/dev/null;then
  echo "we need wordsearch installed to generate the puzzle"
  echo "please read: https://github.com/jamis/wordsearch"
  exit 1
fi
socat exec:hackvr exec:./game.sh
 |