Skip to content

Instantly share code, notes, and snippets.

@snappytux
Created August 24, 2017 04:17
Show Gist options
  • Save snappytux/9364fa0c8301a4a5a0dd716eac8af99d to your computer and use it in GitHub Desktop.
Save snappytux/9364fa0c8301a4a5a0dd716eac8af99d to your computer and use it in GitHub Desktop.
Remove file older 7 days
#!/bin/sh
find /root/* -mtime +7 -exec rm {} \;
@snappytux
Copy link
Author

/root/* You can change your path

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