mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-06 00:03:42 +08:00
b73d457d20
old-commit-hash: 0129a8a4ff8da5314e8e4d4d3336e89667ff6d54
14 lines
128 B
Bash
Executable File
14 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
finish() {
|
|
echo "exiting orbd"
|
|
pkill -SIGINT -P $$
|
|
}
|
|
|
|
trap finish EXIT
|
|
|
|
while true; do
|
|
./orbd &
|
|
wait $!
|
|
done
|
|
|