- or download this
$ mkdir 'a{bc.d'; touch 'a{bc.d/GOT ITabcde'
$ mkdir 'a {bc.d'; touch 'a {bc.d/GOT ITabcde'
$ ls
a {bc.d a{bc.d
- or download this
$ cat foo
$a=q|a\ \\\{bc.d/*|;print "pattern <", $a, "> globs to <", (glob $a),
+">\n";
$ perl foo
pattern <a\ \\{bc.d/*> globs to <a {bc.d/GOT ITabcde>
- or download this
$ cat foo
$a=q|a\ \{bc.d/*|;print "pattern <", $a, "> globs to <", (glob $a), ">
+\n";
$ perl foo
pattern <a\ \{bc.d/*> globs to <a >
- or download this
$ cat foo
$a=q|a\{bc.d/*|;print "pattern <", $a, "> globs to <", (glob $a), ">\n
+";
$ perl foo
pattern <a\{bc.d/*> globs to <a{bc.d/GOT ITabcde>
- or download this
$ cat foo
$a=q|a\\\{bc.d/*|;print "pattern <", $a, "> globs to <", (glob $a), ">
+\n";
$ perl foo
pattern <a\\{bc.d/*> globs to <a\>