You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
167 B
Bash
16 lines
167 B
Bash
5 years ago
|
#!/bin/bash
|
||
|
while true; do
|
||
|
python iq_transmitter.py &
|
||
|
sleep 10
|
||
|
|
||
|
killall -9 python
|
||
|
|
||
|
python /home/user/SDR/txstop.py &
|
||
|
sleep 5
|
||
|
killall -9 python
|
||
|
|
||
|
sleep 15
|
||
|
|
||
|
|
||
|
done
|