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