You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
195B

  1. #!/bin/sh
  2. if test -z "$1"; then
  3. n=1e5
  4. else
  5. n=$1
  6. fi
  7. if test ! -e A; then
  8. mkfifo A
  9. mkfifo B
  10. fi
  11. python3 ace-five.py < A > B &
  12. blackjack --decks=1 --player=stdio --verbose=true -n${1} > A < B