On Friday, 2007-07-20 at 01:18:02 -0700, Garrett Cooper wrote: > %cat /dev/zero 2> /dev/null > /dev/null > Ambiguous output redirect.
You're trying to use Bourne Shell Syntax with the csh. With csh, you can only redirect stdout and stderr together like this: %cat /dev/zero >& /dev/null Lupe Christoph -- | You know we're sitting on four million pounds of fuel, one nuclear | | weapon and a thing that has 270,000 moving parts built by the lowest | | bidder. Makes you feel good, doesn't it? | | Rockhound in "Armageddon", 1998, about the Space Shuttle | _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
