cmd/find
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
<hide> page type::manual thing type::command platform::Linux </hide>
About
The find Linux command searches directory trees for files whose directory information meets particular criteria.
To search by content, use grep.
Examples
Find a file or folder named "kate" somewhere under the current folder:
- <bash>find -name kate</bash>
Find all files or folders with the extension ".txt":
- <bash>find -name *.txt</bash>
View, in realtime, all additions to any file whose extension is ".log":
- <bash>find . -name "*.log" | xargs tail -f</bash>
(This is useful for monitoring web server (e.g. Apache) activity.)
