Difference between revisions of "Linux command: find"

From RHS Wiki
Jump to navigation Jump to search
m (Protected "Linux command: find" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))
Line 3: Line 3:
 
== find files modified in the last 24h ==
 
== find files modified in the last 24h ==
 
  <nowiki>find <path> -mtime -1 -ls</nowiki>
 
  <nowiki>find <path> -mtime -1 -ls</nowiki>
 +
== find case ignoring ==
 +
find . -iname "fileName.txt"

Revision as of 14:25, 8 April 2015

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"