Skip to content

Instantly share code, notes, and snippets.

@denzhel
Created January 4, 2022 11:59
Show Gist options
  • Select an option

  • Save denzhel/c571d48108653dbbd693415a786ff4a8 to your computer and use it in GitHub Desktop.

Select an option

Save denzhel/c571d48108653dbbd693415a786ff4a8 to your computer and use it in GitHub Desktop.
delete files older than

To delete files older than X days, use this:

find ~/ -maxdepth 1 -type f -mtime +7 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment