Skip to content

Instantly share code, notes, and snippets.

@xarmengol
Last active February 1, 2022 15:08
Show Gist options
  • Save xarmengol/6db01f75f31fc41768c1a68c0c6d5c3f to your computer and use it in GitHub Desktop.
Save xarmengol/6db01f75f31fc41768c1a68c0c6d5c3f to your computer and use it in GitHub Desktop.
Moving files older than 1 year

Moving folders older than one year from current location, to destination folder:

find . -maxdepth 1 -mtime +365 -exec sudo mv {} /mnt/DestinationFolder/ \;

  • -maxdepth 1 option is to only check folders age at first level
  • -mtime +365 to list files or folder older than or equal to 365 days old
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment