On Wed, Apr 04, 2007 at 04:36:20PM +0100, Paul wrote:
On Wednesday 04 April 2007 16:11, Chris G wrote:
if [ this -a (that -o theOther) ]
if test cond1 -o ( cond2 ) or if [ cond1 -o ( cond2 ) ]
Note the escaped parenthesis...
Ah, it's because () is special to the shell, OK, thanks!