On Mon, Feb 08, 2016 at 05:35:11PM +1100, Ron Savage wrote:
> >>The syntax I used is:
> >>use File::Glob ':bsd_glob';
> 
> $many x thanx;
> 
> I retreated (sic) to POG - Plain Ol' Glob.

bsd_glob() is available back to 5.6, and the flags back to 5.8, so you
can import them explicitly:

  use File::Glob qw(bsd_glob GLOB_TILDE); # etc

It's just the :bsd_glob import tag that was added in 5.16

Tony

Reply via email to