Skip to content

Instantly share code, notes, and snippets.

@non7top
Created July 27, 2017 15:21
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 non7top/4be7008fcc5cd4331b87a47a981f3811 to your computer and use it in GitHub Desktop.
Save non7top/4be7008fcc5cd4331b87a47a981f3811 to your computer and use it in GitHub Desktop.
Bash, cehck file is older then given number of days
# seen on SO
__older="$(( $(date +%s) - $(stat -L --format %Y ${file} ) > (${__age}*60*60) ))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment