Linux command: find
Revision as of 14:25, 8 April 2015 by Rafahsolis (talk | contribs)
find files
find <path> -name <filename>
find files modified in the last 24h
find <path> -mtime -1 -ls
find case ignoring
find . -iname "fileName.txt"
find <path> -name <filename>
find <path> -mtime -1 -ls
find . -iname "fileName.txt"