summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-glob/glob_dir.tests (plain)
blob: dc4c4fdb521d548099da963fa2c461786294f636
1mkdir dirtest
2 >dirtest/z.tmp
3
4echo */z.tmp
5echo */z.*
6echo */?.*
7echo */z*p
8echo d*r*e*t/z*p
9echo *"/z.t"mp
10echo */z"."*
11echo *"/z"*"p"
12echo "d"*r*e*t"/"z*p
13echo
14echo \*/z.tmp
15echo "*"/z.*
16echo */"?".*
17echo */z"*p"
18echo d*r*e\*t/z*p
19echo *"\\/z.t"mp
20echo */z".*"
21echo *"/z"\*"p"
22echo "d*"r*e*t"/"z*p
23
24rm dirtest/z.tmp
25rmdir dirtest
26