22 lines
203 B
Bash
Executable File
22 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
./gstreamer-record.sh &
|
|
|
|
left=$!
|
|
|
|
./gstreamer-record-r.sh &
|
|
right=$!
|
|
|
|
cleanup() {
|
|
kill -s SIGINT $left
|
|
kill -s SIGINT $right
|
|
exit 0
|
|
}
|
|
|
|
trap cleanup SIGINT
|
|
|
|
while true; do
|
|
sleep 1
|
|
done
|