Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- #!/bin/bash
- #wget -qr https://www.celestrak.com/NORAD/elements/weather.txt -O /home/pi/predict/weather.txt
- grep "NOAA 15" /home/pi/predict/weather.txt -A 2 > /home/pi/predict/weather.tle
- grep "NOAA 18" /home/pi/predict/weather.txt -A 2 >> /home/pi/predict/weather.tle
- grep "NOAA 19" /home/pi/predict/weather.txt -A 2 >> /home/pi/predict/weather.tle
-
- #Remove all AT jobs
- for i in $(atq | awk '{print $1}');do atrm "$i";done
-
- #Schedule Satellite Passes:
- /home/pi/schedule_sat.sh "NOAA 19" 137.1000
- /home/pi/schedule_sat.sh "NOAA 18" 137.9125
- /home/pi/schedule_sat.sh "NOAA 15" 137.6200
|