d2241f5902
Still rather rudimentary for ash function old new delta binop 433 589 +156 check_operator 65 101 +36 done_word 736 769 +33 test_main 405 418 +13 parse_stream 2227 2238 +11 ops_texts 124 133 +9 ops_table 80 86 +6 run_pipe 1557 1562 +5 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 8/0 up/down: 269/0) Total: 269 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
16 lines
359 B
Plaintext
Executable File
16 lines
359 B
Plaintext
Executable File
v='*.z'
|
|
[[ a.z = *.z ]]; echo 1:YES:$?
|
|
[[ a.z == $v ]]; echo 2:YES:$?
|
|
|
|
# wildcards can match a slash
|
|
[[ a/b = a*b ]]; echo 3:YES:$?
|
|
[[ a/b == a?b ]]; echo 4:YES:$?
|
|
|
|
# wildcards can match a leading dot
|
|
[[ a/.b = a/*b ]]; echo 5:YES:$?
|
|
[[ a/.b == a/?b ]]; echo 6:YES:$?
|
|
|
|
# wildcards can be escaped
|
|
[[ abc = a*c ]]; echo 7:YES:$?
|
|
[[ abc == a\*c ]]; echo 8:no:$?
|