Created
April 21, 2016 11:50
-
-
Save habibutsu/b71834824d3baef61f9f01466ac7f1c9 to your computer and use it in GitHub Desktop.
Bash-snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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