Find: Revision history

Jump to: navigation, 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.

27 August 2024

  • curprev 00:1500:15, 27 August 2024Ardika Sulistija talk contribs 2,134 bytes +2,134 Created page with "<B>find</B> - Search for files in a directory hierarchy. ---- Examples: find /dir -name "filename" # Searches up the "dir" directory with "filename" find /dir -iname "filename" # ^^^ does the same but insensitive. find /dir -emtpy # Searches up all the empty files in "dir" directory. Displays the 5 LARGEST files in the directory THAT YOU ARE IN. (hence the dot (.) find . -type f -exec ls -s {} \; | sprt -n -r | head -5 Displays the..."