in reply to Re: Re: globing files with spaces problem.
in thread globing files with spaces problem.
while (defined($sourcefile = bsd_glob("*")))
to:
foreach my $sourcefile (bsd_glob("*"))
bsd_glob doesn't act like the <*.foo> operator, as CORE::glob does.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: globing files with spaces problem.
by Nabuku (Initiate) on Aug 10, 2002 at 20:13 UTC |