You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/groundstation/gqrx.sh

17 lines
448 B

#!/bin/bash
# script to auto decode CubeSat Simulator telemetry
# kill rtl if running
ps -ef | grep rtl | grep -v grep | awk '{print $2}' | sudo xargs kill
# kill openwebrx process if running
ps -ef | grep openwebrx | grep -v grep | awk '{print $2}' | sudo xargs kill
# kill csdr process if running
ps -ef | grep csdr | grep -v grep | awk '{print $2}' | sudo xargs kill
echo -e "Script to run Gqrx\n"
/home/pi/gqrx-sdr-2.11.5-linux-rpi3/gqrx

Powered by TurnKey Linux.