[LBo] Are HOWTOs installed? - Exercise chapter 3

Stefan Waidele Stefan at Waidele.info
Sat Nov 18 15:06:59 CET 2006


Anita Lewis schrieb:
> [...]
> cd /usr
> find -name *HOWTO*
> find -name *howto*

You forgot to quote again :)

find -iname "*howto*"
will find any documents with "howto" in them. (Case independant).

If you want to really do it brute-force, then you should start the find 
from the root-directory:

find / -iname "*howto*"

Stefan



More information about the QnA mailing list