1
vote
how to use shell script checking last changed time of a file
You can get the last modification time of a file with stat, and the current date with date. You can use format strings for both to get them in "seconds since the epoch": …
