Skip to content

Instantly share code, notes, and snippets.

@umegaya
Created October 8, 2021 00:59
Show Gist options
  • Save umegaya/aad998b30d514bfa39816e17ef5eb86f to your computer and use it in GitHub Desktop.
Save umegaya/aad998b30d514bfa39816e17ef5eb86f to your computer and use it in GitHub Desktop.
tar files which modified between specified datetimes, without recursion
find . -newermt 20210901 -not -newermt 20210930 -type f -print0 -maxdepth 1 | xargs -0 tar -cvzf /tmp/archive.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment