Configuration Information [Automatically generated, do not change]:
Machine: mipsel
OS: linux-gnu
Compiler:
/home/dino/sandbox/trunk/TARGET_LINUX_MIPSTOOLS/debug/bin/mipsel-unkno
wn-linux-gnu-gcc -march=mips32
Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='mipsel'
-DCONF_OSTYPE='li
nux-gnu'
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to Michael Wardle on 12/8/2005 7:22 PM:
> Yet when I attempt a simple match, it doesn't work:
>
> bash-3.00$ [[ "foo" == "foo" ]]
> bash-3.00$ echo $?
> 0
> bash-3.00$ [[ "foo" == "fo?" ]]
> bash-3.00$ echo $?
> 1
Gl
Michael Wardle wrote:
> In the SHELL GRAMMAR section of the bash man page, the [[ expression ]]
> syntax is described:
>
> When the == and != operators are used, the string to the right of
> the operator is
> considered a pattern and matched according to the rules described below
> und
In the SHELL GRAMMAR section of the bash man page, the [[ expression ]]
syntax is described:
When the == and != operators are used, the string to the right of the
operator is
considered a pattern and matched according to the rules described below
under Pattern Matching.
The P