nt9856x/BSP/busybox/shell/ash_test/ash-quoting/case_glob1.tests
2023-03-28 15:07:53 +08:00

9 lines
104 B
Plaintext
Executable File

g='[3](a)(b)(c)'
s='[3](a)(b)(c)'
case $g in
"$s") echo s
;;
*) echo "*"
;;
esac