I think it has to do with how .pl files are handled by Windows. This may come down to `assoc` and `ftype` or maybe in the registry. For me (from a cmd.exe prompt, this won't work in PowerShell):
VinsWorldcom@:C:\Users\VinsWorldcom\tmp> assoc | find /i "perl"
.pl=Perl_program_file
VinsWorldcom@:C:\Users\VinsWorldcom\tmp> ftype | find /i "Perl_program
+_file"
Notice, the `ftype` command (for me) returns nothing, but if I look in my registry at HKEY_CLASSES_ROOT\Perl_program_file, I have some subkeys:
HKEY_CLASSES_ROOT
Perl_program_file
shell
Execute Perl Program
command = [REG_SZ] C:\Strawberry\perl\bin\perl.exe "%1" %*
Now when I run your commands, with ./ or .\ and with or without `perl` (and also with or without the .pl extension as I have my PATHEXT environment variable to include .pl) from PowerShell and / or CMD.exe, in all the combinations of the above criteria that make sense, I get the same output:
PowerShell
PS VinsWorldcom ~\tmp > .\test.pl
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
PS VinsWorldcom ~\tmp > ./test.pl
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
PS VinsWorldcom ~\tmp > perl .\test.pl
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
PS VinsWorldcom ~\tmp > perl ./test.pl
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
PS VinsWorldcom ~\tmp > ./test
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
PS VinsWorldcom ~\tmp > .\test
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
PS VinsWorldcom ~\tmp >
CMD (note: CMD.exe won't interpret / as \ like PowerShell does)
VinsWorldcom@:C:\Users\VinsWorldcom\tmp> .\test.pl
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
VinsWorldcom@:C:\Users\VinsWorldcom\tmp> perl .\test.pl
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
VinsWorldcom@:C:\Users\VinsWorldcom\tmp> .\test
Platform: MSWin32
Executable: C:\Strawberry\perl\bin\perl.exe
Enter to close window:
VinsWorldcom@:C:\Users\VinsWorldcom\tmp>
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|