mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-06-01 03:18:55 -06:00
13 lines
153 B
Bash
Executable File
13 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cd $(dirname $0)
|
|
|
|
for cargo_file in */Cargo.toml; do
|
|
cargo run --bin $(dirname $cargo_file) &
|
|
pid=$!
|
|
sleep 20
|
|
kill $pid
|
|
done
|