Skip to content

Instantly share code, notes, and snippets.

@jasonevans1
Created December 10, 2014 15:47
Show Gist options
  • Save jasonevans1/e2c6e99964f5a547893b to your computer and use it in GitHub Desktop.
Save jasonevans1/e2c6e99964f5a547893b to your computer and use it in GitHub Desktop.
Useful Linux Commands

find any files that you have changed in the last 3 days with the suffix of ________:

find . -mtime -3 -type f \( -iname \*.phtml -o -iname \*.php -o -iname \*.xml \) -print

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment