http://www.perlmonks.org?node_id=698521


in reply to Re: Portability of glob function in a modern perl
in thread Portability of glob function in a modern perl

Does using File::Glob::bsd_glob() instead solve the spaces issue? Or are there other traps?
  • Comment on Re^2: Portability of glob function in a modern perl

Replies are listed 'Best First'.
Re^3: Portability of glob function in a modern perl
by Corion (Patriarch) on Jul 18, 2008 at 06:46 UTC

    No - for the cases where I use glob, I always have use File::Glob qw(bsd_glob); at the top of my script. When using glob, bsd_glob is the sane and safe way.