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/sdr.sh

19 lines
424 B

#!/bin/bash
# script to run OpenWebRX SDR
echo -e "\nScript to run SDR for CubeSat Simulator\n"
echo -e "IP Address to use in web browsers is: "
hostname -I|cut -f1 -d ' '
# 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
cd ../openwebrx
sudo python openwebrx.py

Powered by TurnKey Linux.