- or download this
$ perl -le'print for < abc/OneWord >'
abc/OneWord
...
$ perl -MFile::Glob=bsd_glob -le'print for bsd_glob("abc/Two Words")'
abc/Two Words
- or download this
$ perl -le'print for < '\''abc/OneWord'\'' >'
'abc/OneWord'
$ perl -le'print for < '\''abc/Two Words'\'' >'
abc/Two Words
- or download this
$ perl -MFile::Glob=bsd_glob -le'print for bsd_glob("'\''abc/OneWord'\
+''")'
'abc/OneWord'
$ perl -MFile::Glob=bsd_glob -le'print for bsd_glob("'\''abc/Two Words
+'\''")'
'abc/Two Words'
- or download this
$ echo '< \\'\''abc/OneWord\\'\'' >' &&
> perl -le'print for < \\'\''abc/OneWord\\'\'' >'
...
> perl -le'print for < \\'\''abc/Two\\ Words\\'\'' >'
< \\'abc/Two\\ Words\\' >
'abc/Two Words'