For example,
a="1|2|3"
b=3
case $b in
$a )
echo in
;;
* )
echo out
;;
*)
esac
I'd like $a
to be expanded as 1|2|3
. But seems it cannot work as expected. Thanks for any suggestion.
For example,
a="1|2|3"
b=3
case $b in
$a )
echo in
;;
* )
echo out
;;
*)
esac
I'd like $a
to be expanded as 1|2|3
. But seems it cannot work as expected. Thanks for any suggestion.
The problem is that
|
is not part of the pattern, but part of thecase
statement's syntax that separates two patterns. The following would work:The
|
needs to be visible to the parser before parameter expansion occurs to act as a pattern separator. If the|
is produced by a parameter expansion, it is treated as a literal character to match as part of a pattern.