What is the better Shebang Line to use ?
- by Anonymous
What is better/faster to use:
#! perl
or
#! perl.exe
or
#! fullpath/perl(/perl.exe)
or
#! partialpath/perl(/perl.exe)
?
And, when using "#! perl", when it works on a particular system,
what is the print() for showing the full path to perl.exe,
that could be included into the Shebang Line ?
And, if using a /path/path/perl, are "*" or "..." allowed to be used for the folders ?