Difference between revisions of "cmd/find"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< cmd
Jump to navigation Jump to search
(seed page)
 
m (slight correction)
Line 7: Line 7:
 
{{seed}}
 
{{seed}}
 
==Examples==
 
==Examples==
Find a file or folder named "kate" somewhere in the filesystem:
+
Find a file or folder named "kate" somewhere under the current folder:
 
: <code>find -name kate</code>
 
: <code>find -name kate</code>
  

Revision as of 20:47, 19 February 2015

About

This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!

Examples

Find a file or folder named "kate" somewhere under the current folder:

find -name kate

Find all files or folders with the extension ".txt":

find -name *.txt

Links

Reference