blob: 2ded83ceb379139d207010ada64c321b81e46ec7 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
# Make sure that the program is up to date.
cargo build --release
# Run the program in parallel and make sure the priority is low.
seq 1 "$(nproc)" | xargs -P 0 -I _ sh -c "nice -n 19 ./target/release/wwb game._.bin | tee -ai output._.log"
|