Monitors a web page for changes every 30min then sends an email notification if the file changes.
Start with nohup
nohup sh webpage_monitor.sh > nohup.log 2>&1 &
Get PID
echo $! > save_pid.txt
tail -f nohup.log
kill `cat save_pid.txt`
rm save_pid.txt