# We used to get the my_data.txt file via SSH, but wget is faster 
#sudo sshpass -p "Ericss0n" rsync -avzh pi@UMD001:/home/pi/Python/my_data.txt /home/pi/Python/ >null


# Use wget to pull my_data.txt file from the master Pi (UMD001)
# -q stops the script outputting to the screen

sudo wget -q http://192.168.1.11/my_data.txt >null -O my_data.txt
