mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 20:03:53 +08:00
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
|
|
|