From caf2267550a5db7aeefb3c66a4fc7c1801b3da48 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 18 Dec 2024 11:47:56 -0600 Subject: add some contrib scripts Signed-off-by: Matt Strapp --- contrib/run-in-parallel | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 contrib/run-in-parallel (limited to 'contrib/run-in-parallel') diff --git a/contrib/run-in-parallel b/contrib/run-in-parallel new file mode 100644 index 0000000..2ded83c --- /dev/null +++ b/contrib/run-in-parallel @@ -0,0 +1,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" \ No newline at end of file -- cgit v1.2.3