mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-08-05 00:05:57 +08:00
78d3dfe8ae
old-commit-hash: 84560ccd55bc87bb9615176d69a5b8afc40660e1
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
|