1758575 Members
2092 Online
108872 Solutions
New Discussion

mtime issue

 
SOLVED
Go to solution
Dennis Handly
Acclaimed Contributor

Re: mtime issue

Here is an example using -prune that everyone finds confusing:
find . \( -type d ! -name . -prune -o -type f \) -name "*.arc" -mtime +0
Or possibly:
find . -type d ! -name . -prune -o -type f -name "*.arc" -mtime +0 -print