Skip to content

Instantly share code, notes, and snippets.

@drzax
Created July 9, 2015 02:55
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drzax/53db1fb55090df3ef18b to your computer and use it in GitHub Desktop.
Save drzax/53db1fb55090df3ef18b to your computer and use it in GitHub Desktop.
Quick and dirty site change monitoring
#!/bin/bash
while [ 1=1 ]; do
wget seattletimes.com -O st.html
git commit -a -m "Registered update"
sleep 600
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment