Skip to content

Instantly share code, notes, and snippets.

@aplz
Last active October 24, 2018 12:02
Show Gist options
  • Save aplz/72517d532f3237826194ec1c732d8f06 to your computer and use it in GitHub Desktop.
Save aplz/72517d532f3237826194ec1c732d8f06 to your computer and use it in GitHub Desktop.
copy files by creation timestamp range in shell
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