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.

5 anni fa
5 anni fa
1234567891011
  1. # if test ! -e fifo; then
  2. # mkfifo fifo
  3. # fi
  4. # blackjack --decks=4 --player=stdio --verbose=true -n2e4 < fifo | ./ace-five.py > fifo
  5. if test ! -e A; then
  6. mkfifo A
  7. mkfifo B
  8. fi
  9. python3 ace-five.py < A > B &
  10. blackjack --decks=4 --player=stdio --verbose=true -n1e6 > A < B