9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
|
g='[3](a)(b)(c)'
|
||
|
s='[3](a)(b)(c)'
|
||
|
case $g in
|
||
|
"$s") echo s
|
||
|
;;
|
||
|
*) echo "*"
|
||
|
;;
|
||
|
esac
|