Skip to content

Instantly share code, notes, and snippets.

@julianlam
Created July 27, 2022 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julianlam/66e44ad4418b826a9f7a545b01337808 to your computer and use it in GitHub Desktop.
Save julianlam/66e44ad4418b826a9f7a545b01337808 to your computer and use it in GitHub Desktop.
Delete all files older than X days #blog

Sometimes you just need to prune a directory of all files older than a certain age. Think log files, or uploaded files... maybe ~/Downloads, perhaps?

find . -mindepth 1 -maxdepth 1 -mtime +90 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment