Last active
October 24, 2018 12:02
-
-
Save aplz/72517d532f3237826194ec1c732d8f06 to your computer and use it in GitHub Desktop.
copy files by creation timestamp range in shell
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
for i in `find . -type f -newermt '2018/10/14' -not -newermt '2018/10/21'`; do cp -p $i <your_folder>/; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment