in reply to \n in filenames
Update: A little explanation. A glob (distinct from a typeglob) is a kind of simplified regex for filenames. All unix shells use them, as does DOS in a further simplified form. Perl glob() follows the csh style of filename globbing in its argument, returning a list of all matching file names. The diamond operator applied to a bare string, as in print <*.txt>;, is another way to use them, but glob() is a better choice when interpolation of variables (or "\n") must be done.
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: \n in filenames
by Elliott (Pilgrim) on Oct 21, 2001 at 02:23 UTC | |
by Fletch (Bishop) on Oct 21, 2001 at 05:05 UTC |