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
|