How to find files modified in the last 24 hours using find.
- April 16th, 2008
- Posted in Documentation
- Write comment
I never seem to remember this. I always forget that it is the 0. I have used this on linux and unix.
find . -type f -mtime 0
How to find more than one name pattern:
find /tmp -name *.abc -o -name *.def -o -name *.ghi -o -name *.jkl -type f -print
No comments yet.