Skip to content

Instantly share code, notes, and snippets.

@ivankristianto
Created March 7, 2017 07:14
Show Gist options
  • Save ivankristianto/f37d7bd0c39d9f3a80667c6f13c441c9 to your computer and use it in GitHub Desktop.
Save ivankristianto/f37d7bd0c39d9f3a80667c6f13c441c9 to your computer and use it in GitHub Desktop.
Delete file with last modified
find /path-to-directory -mtime +5 -exec rm -f {} \;
find /path-to-directory -mtime +5 -exec ls -l {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment