Skip to content

Instantly share code, notes, and snippets.

@grumpysi
Last active August 30, 2017 11:59
Show Gist options
  • Save grumpysi/e14b55fc878802b02eeb8820d1fcf170 to your computer and use it in GitHub Desktop.
Save grumpysi/e14b55fc878802b02eeb8820d1fcf170 to your computer and use it in GitHub Desktop.
Find files changed between two dates
find -type f -newermt "2011-12-22 00:00:00" \! -newermt "2011-12-24 13:23:00"
or
find -type f -newermt "2011-12-22" \! -newermt "2011-12-24"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment