From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by archone.tamu.edu id <45330>; Mon, 3 Feb 1992 11:09:19 -0600 From: Byron Rakitzis To: rc Subject: Re: Match operator puzzlement Message-Id: <92Feb3.110919cst.45330@archone.tamu.edu> Date: Mon, 3 Feb 1992 11:09:06 -0600 Re: evaluating *'s. The rule is simple. Globbing happens after nearly everything else, so if you have a command that begins with a ~, the ~ will "steal" the metacharacters: foo='*' eval ~ bar $foo gets rescanned as ~ bar * which returns true.