2012/2/27 Rémi Denis-Courmont <remi at remlab.net> > So 'if ! test COND' fails. Shouldn't 'if test ! COND' work in any POSIX shell? That seems to work. > cat test.sh #!/bin/sh if test ! -z "foo"; then echo True else echo False fi > ./test.sh True