Olivier Delhomme <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED]:~$ /usr/bin/\[ --version | head -n1 > [ (GNU coreutils) 5.0.90 > > [EMAIL PROTECTED]:~$ [ x = x ] && echo ok > ok
In the first case, you are using the coreutils "[" command installed in /usr/bin. In the second case, you are using the shell's builtin "[" command, which is not of interest here. > [EMAIL PROTECTED]:/vol/coreutils-5.0.91/src$ ./[ --version | head -n1 > [ (GNU coreutils) 5.0.91 > > [EMAIL PROTECTED]:/vol/coreutils-5.0.91/src$ [ x = x ] && echo ok > ok Again, you are using different commands. paul _______________________________________________ Bug-coreutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-coreutils
