aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-glob/glob_dir.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-glob/glob_dir.tests')
-rwxr-xr-xshell/hush_test/hush-glob/glob_dir.tests25
1 files changed, 25 insertions, 0 deletions
diff --git a/shell/hush_test/hush-glob/glob_dir.tests b/shell/hush_test/hush-glob/glob_dir.tests
new file mode 100755
index 000000000..dc4c4fdb5
--- /dev/null
+++ b/shell/hush_test/hush-glob/glob_dir.tests
@@ -0,0 +1,25 @@
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