You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a reminder here but here is a script that can be used to refresh the initial update scripts with the hope of hopefully ever expanding in-line application upgrades vs. having to reflashing the SD card
--David
KI6ZHD
/home/pi/bin/refresh-all-update-scripts.sh
#!/bin/bash
06/15/22 - dranch: Script to support updates to upgrade scripts of select HamPi programs
This is a reminder here but here is a script that can be used to refresh the initial update scripts with the hope of hopefully ever expanding in-line application upgrades vs. having to reflashing the SD card
--David
KI6ZHD
/home/pi/bin/refresh-all-update-scripts.sh
#!/bin/bash
06/15/22 - dranch: Script to support updates to upgrade scripts of select HamPi programs
cd /home/pi/bin
#enable once the updater script is in place
#wget https://raw.githubusercontent.com/dslotter/ham_radio_scripts/main/update-all-update-scripts.sh
#wsjtx_to_n3fjp.py is missing in the git repo
for I in qrz_callsign_reader.py update_fldigi_suite update_js8call_from_src update_wsjtx_from_deb update_wsjtx_from_src update_wsjtx_log.py upload_adif_log; do
wget -q -O $I.tmp https://raw.githubusercontent.com/dslotter/ham_radio_scripts/main/$I
diff $I $I.tmp 2>&1 > /dev/null
if [ $? -ne 0 ]; then
echo -e "$I updated"
mv $I.tmp $I
else
echo -e "$I unchannged"
/bin/rm $I.tmp
fi
done
The text was updated successfully, but these errors were encountered: