Last active
October 24, 2018 12:15
-
-
Save aplz/df0451b43fe1b9e397a835e9c5b5b5a0 to your computer and use it in GitHub Desktop.
filter files in directory by creation date, copy them to a new directory preserving original sub-directory structure
This file contains 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
find . -type f -newermt '2018/10/14' -not -newermt '2018/10/21'| cpio -pvdmB <your-directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment