Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!ihnp4!houxm!hogpc!houti!ariel!vax135!cornell!uw-beaver!tektronix!hplabs!sri-unix!matt@UCLA-LOCUS.ARPA From: matt@UCLA-LOCUS.ARPA@sri-unix.UUCP Newsgroups: net.unix Subject: Re: An odd difference between "cat file" and "cat Date: Mon, 23-Apr-84 12:10:15 EDT Article-I.D.: sri-arpa.12659 Posted: Mon Apr 23 12:10:15 1984 Date-Received: Mon, 30-Apr-84 00:59:50 EDT Lines: 17 From: Matthew J. Weinstein [Running 4.1 BSD] In Bourne shell, filename expansion is suppressed after "<" and ">". $ cat >* produces a file named `*'. $ cat <* produces `*: cannot open' (providing * doesn't exists) In Csh, an `ambiguous' message is emitted if more than one file matches a pattern in a funny place (first token in line or after "<" or ">"). (Results obtained by experimentation, not code examination.) - Matt