Skip to content

Instantly share code, notes, and snippets.

@koveseb
Created February 6, 2021 18:51
Show Gist options
  • Save koveseb/e55b7a931c3a6e0056814323acdcaf24 to your computer and use it in GitHub Desktop.
Save koveseb/e55b7a931c3a6e0056814323acdcaf24 to your computer and use it in GitHub Desktop.
Delete files older than x days
#!/bin/bash
echo 'Days old:'
read days
find * -mtime +$days -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment