Skip to content

Instantly share code, notes, and snippets.

@habibutsu
Created April 21, 2016 11:50
Show Gist options
  • Select an option

  • Save habibutsu/b71834824d3baef61f9f01466ac7f1c9 to your computer and use it in GitHub Desktop.

Select an option

Save habibutsu/b71834824d3baef61f9f01466ac7f1c9 to your computer and use it in GitHub Desktop.
Bash-snippets
# check elapsed time after last modification
# not often than once at 15 minutes
if [ $(( $(date +%s) - $(stat --format %Y "some_file.txt") )) -gt 900 ]
then
echo "old"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment