Skip to content

Instantly share code, notes, and snippets.

@itomg
Created September 9, 2014 06:43
Show Gist options
  • Save itomg/9f42263f00c8dcbeb9c2 to your computer and use it in GitHub Desktop.
Save itomg/9f42263f00c8dcbeb9c2 to your computer and use it in GitHub Desktop.
Remove files days ago in linux
## -ctime / -mtime
## -print / -ls
## -delete
find ./ -iname '*.com*' -type f -mtime +30 -print
find ./ -iname '*.com*' -type f -mtime +30 -ls
find ./ -iname '*.com*' -type f -mtime +30 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment