From cf0874c77543d371711ef9c4fe712e21bb4d8cff Mon Sep 17 00:00:00 2001 From: va7eex Date: Tue, 21 Feb 2017 00:41:08 -0800 Subject: [PATCH] adding comments --- sats.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sats.sh b/sats.sh index 90ca7cb..44dd298 100644 --- a/sats.sh +++ b/sats.sh @@ -1,18 +1,23 @@ #!/bin/bash +#Satellite we want to plan to record. ex: NOAA-19 SAT=$1 +#current unix time TIEMSTAMP=$(date +%s) +#make a file FILENAME="sat_schedules/schd-${SAT}-${TIEMSTAMP}" rm reschd-$SAT.txt -echo "#!/bin/bash" > $FILENAME +#from here out we generate a bash script to be executed at the time of a satellite pass -echo 'bash wol_fastserv.sh' >> $FILENAME +echo "#!/bin/bash" > $FILENAME -python satpredict.py 25 1 true +#meat and potatoes of the program +python satpredict.py python satschedule.py $SAT >> $FILENAME +#regenerate the bash script for the next pass afterwards echo "sleep 30" >> $FILENAME echo "echo bash sats.sh ${SAT} > reschd-${SAT}.txt" >> $FILENAME echo "at now + 30 minutes -q z -M -f reschd-${SAT}.txt" >> $FILENAME @@ -22,5 +27,6 @@ echo "rm ${FILENAME}" >> $FILENAME TIEM=$(<"${SAT}_sched.txt") echo $TIEM +#commit to the action at -M -m $TIEM < $FILENAME rm "${SAT}_sched.txt"