Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Made first search example match convention of rest of examples.

...

Code Block
languagebash
find /[folder] -name [filename] -print # find a file
find /[folder] -size +51024 -print     # where 51024 is in Kilobytes which is approximately 5MB

...