Skip to content

Instantly share code, notes, and snippets.

@mrsweaters
Created July 3, 2014 21:08
Show Gist options
  • Select an option

  • Save mrsweaters/e67de72e5ebbda0c3f87 to your computer and use it in GitHub Desktop.

Select an option

Save mrsweaters/e67de72e5ebbda0c3f87 to your computer and use it in GitHub Desktop.
unbuntu remove files older than X days
find /path/to/files* -mtime +5 -exec rm {} \;
# five represents the number of days.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment