With a shebang like #!/usr/bin/env perl how can I make accessible to the script the perl I am using for running the script?
(Like in the perl -E 'say $ENV{_}' command line).
With a shebang like #!/usr/bin/env perl how can I make accessible to the script
Share
From perlvar, there’s the
$^Xvariable you could use.