blob: b2dc0ff4bb0835155735936c96d7851f31430329 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
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
|