Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!iuvax!rutgers!bellcore!texbell!merch!cpe!tif From: tif@cpe.UUCP Newsgroups: comp.os.minix Subject: Re: tolower to _tolower why? Message-ID: <136600002@cpe> Date: 20 Feb 89 16:53:00 GMT References: <9096@louie.udel.EDU> Lines: 16 Nf-ID: #R:louie.udel.EDU:9096:cpe:136600002:000:783 Nf-From: cpe.UUCP!tif Feb 20 10:53:00 1989 Written 5:07 pm Feb 18, 1989 by udel.UUCP!mmdf in cpe:comp.os.minix >) why does find / -name termcap* -print not find /etc/termcap? (It will >find /usr/junk/termcap.sh, so apparently the * keeps it from finding just >plain old termcap). Because you were in /usr/junk when you tried it. "termcap*" was expanded (by the shell) to "termcap.sh". Then it runs "find / -name termcap.sh -print". Strangely, in any other directory it would work. If you were in /etc it would expand to "find / -name termcap -print". If you were in / it would expand to "find / -name termcap* -print". The only guaranteed way to get what you want is to quote the * as in "find / -name termcap\* -print". Paul Chamberlain Computer Product Engineering, Tandy Corp. {killer | texbell}!cpe!tif