Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!hplabs!hpda!hpcuhc!hpsemc!gph From: gph@hpsemc.HP.COM (Paul Houtz) Newsgroups: comp.unix.questions Subject: Re: searching for a file Message-ID: <810052@hpsemc.HP.COM> Date: 9 May 89 17:07:25 GMT References: <10449@orstcs.CS.ORST.EDU> Organization: HP Technology Access Center, Cupertino, CA Lines: 8 In article <1530@cmx.npac.syr.edu> gefuchs@logiclab.cis.syr.edu (Gill E. Fuchs) writes: > find . -name 'gugu' -print >but obviously that only works for the current directory No. This will descend the directory tree from current directory thru all subdirectories. If you want to start at root, enter: find / -name 'gugu' -print