in reply to Re: Creating a tarball
in thread Creating a tarball
I'd guard that against unreadable files:
sub { -f || -d and push @filenamelist, "$_" }, => sub { -f || -d and -r and push @filenamelist, "$_" },
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Creating a tarball
by tybalt89 (Monsignor) on Feb 07, 2019 at 07:41 UTC | |
Re^3: Creating a tarball
by kcott (Archbishop) on Feb 07, 2019 at 12:39 UTC |