Completely misunderstood the script.
The confusion comes from the mixup of directory and command in the line
This generates an access denied error if the command is not modified
my $result = ~/git/ssllabs-scan/ssllabs-scan $_;
I think it better to indicate the required change as followed
my $result = ~/path to command/ssllabs-scan-v3 $_;
Completely misunderstood the script.
The confusion comes from the mixup of directory and command in the line
This generates an access denied error if the command is not modified
my $result =
~/git/ssllabs-scan/ssllabs-scan $_;I think it better to indicate the required change as followed
my $result =
~/path to command/ssllabs-scan-v3 $_;