Revision history of "Find"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 16:07, 30 December 2022Xbl talk contribs 1,849 bytes +1,849 Created page with "= find = Search for files in a directory hierarchy. The command is recursive by default.</br> == Use == <code>find /var/www -name '*.css'</code> prints full path/filename to all files in /var/www that end in .css <code>-name</code> filename matches string(case sensitive)</br> <code>-iname</code> filename matches string(case insensitive)</br> <code>-regex</code> filename matches regex(case sensitive)</br> <code>-iregex</code> filename matches regex(case insensitive)</b..."