On 9/7/19 8:35 PM, Mike wrote:
Maybe you should simplify to:
#!/usr/bin/perl
use strict;
use warnings;
symlink('ab', "foo") || die $!;
If that doesn't work try it after changing
'symlink'
to
'link'
symlink and link are very different functions so changing it likely
won't help. see my other post on why this is likely failing. IMO link
would fail for the same reason as symlink as the pack is putting in null
bytes in the filename.
uri
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/