I have a Bash script that repeatedly copies files every 5 seconds. But this is a touch overkill as usually there is no change.
I know about the Linux command watch but as this script will be used on OS X computers (which don’t have watch, and I don’t want to make everyone install macports) I need to be able to check if a file is modified or not with straight Bash code.
Should I be checking the file modified time? How can I do that?
Edit: I was hoping to expand my script to do more than just copy the file, if it detected a change. So is there a pure-bash way to do this?
rsyncinstead? It can compare the timestamp and size to the timestamp and size of the target file, and avoid copying if they are the same. (If you're copying to a remote box, there will still be the overhead of connecting, though.) – Thomas Jan 14 '11 at 21:29