|
From: Julian S. <js...@ac...> - 2007-11-17 18:41:42
|
> Hmm.. Is ( and ) really better?
Hmm .. no. It seems like the evidence is not in my favour :-)
> weidendo@linux:~> echo %q{foo}
> %q{foo}
> weidendo@linux:~> echo %q(foo)
> bash: syntax error near unexpected token `('
> weidendo@linux:~>
That's in bash. In csh:
> echo %q{foo}
%qfoo
> echo %q(foo)
Badly placed ()'s.
So in csh both are borked, but ( ) is more borked than { }.
Can I change my vote back to { } please?
J
|