blob: c623fb12606519951cf2b662d4e470c340476f52 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
RUSTFLAGS="-C target-cpu=native" cargo build --release
echo "-- New session started $(date --iso-8601=seconds) --" >> output.log
nice -n 19 ./target/release/wwb game.bin | tee -ai output.log
echo "-- End session started $(date --iso-8601=seconds) --" >> output.log
|