Skip to content

Instantly share code, notes, and snippets.

@denzhel
Last active April 22, 2021 04:34
Show Gist options
  • Select an option

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

Select an option

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

To delete files older than a certain date, you can use the following:

sudo find . -mtime +<AmountOfDays> -type f -delete

#linux #bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment