mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-02 20:12:07 +08:00
d9d83b0225
* mv camerad * add hardware symlink * fix unit tests old-commit-hash: 6123ab3d1c901ed3763e1a7cb8e1aac3f6b8fda3
10 lines
95 B
Bash
Executable File
10 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
cd ..
|
|
while :; do
|
|
./camerad &
|
|
pid="$!"
|
|
sleep 2
|
|
kill -2 $pid
|
|
wait $pid
|
|
done
|