Linux Find Modified and Not Hidden

The following will find files modified in the last day that are not hidden:

find . -mtime -1 -not -path '*/\.*'

 

If you found this interesting, please share.

© Scott S. Nelson

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.