aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-quoting/case_glob1.tests
blob: 8dbbc0fb1822c3097191f2f44a1a2849965711c7 (plain)
1
2
3
4
5
6
7
8
g='[3](a)(b)(c)'
s='[3](a)(b)(c)'
case $g in
"$s")   echo s
        ;;
*)      echo "*"
        ;;
esac