Why does the following bash script only print out variable worked?
#! /bin/bash
foo=baaz
regex='ba{2}z'
if [[ $foo =~ 'ba{2}z' ]]; then
echo "literal worked"
fi
if [[ $foo =~ $regex ]]; then
echo "variable worked"
fi
Is there something in the bash documentation that states the =~ operator only works with variables, not literals? Does this limitation apply to any other operators?
GNU bash, version 4.2.8(1)-release (x86_64-pc-linux-gnu)on Natty Narwhal. – splicer Jul 12 '11 at 14:15