mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-05-29 18:08:56 -06:00
21 lines
209 B
Bash
Executable File
21 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
duration=20
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
for directory in $(ls examples); do
|
|
(
|
|
cd examples/$directory
|
|
|
|
cargo build
|
|
cargo run &
|
|
|
|
pid=$!
|
|
sleep $duration
|
|
kill $pid
|
|
)
|
|
done
|