Skip to content

Instantly share code, notes, and snippets.

@jamesona
Created June 7, 2018 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesona/e6c2228c0a696fb45e365bfe64af8c2a to your computer and use it in GitHub Desktop.
Save jamesona/e6c2228c0a696fb45e365bfe64af8c2a to your computer and use it in GitHub Desktop.
#!/bin/bash
FILE=$1
if [ -f $FILE ]; then
curl $FILE > $FILE.new
cmp --silent $FILE $FILE.new || <do stuff here because the website changed>
else
curl $FILE > $file
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment