A few days ago, i was trying to make my perl script an executable (with no success). but that's not the direction of my question (at least not right now).
Once i stopped trying to make the executable work, i ran my perl script as a perl script (*.pl), but now when the console window comes up when it runs, i noticed that it's running through C:\Windows\syst em32\cmd.exe instead of C:\Perl\bin\per l.exe...which is causing the script to freak out and not run properly! The first line in my code is
which looks for the perl interpreter.
WHAT DID I DO?!?! And how can i get it back to normal and execute using perl.exe??
By the way (if this helps), i tried making the perl script an executable by using PAR and also Perl2Exe.
Once i stopped trying to make the executable work, i ran my perl script as a perl script (*.pl), but now when the console window comes up when it runs, i noticed that it's running through C:\Windows\syst em32\cmd.exe instead of C:\Perl\bin\per l.exe...which is causing the script to freak out and not run properly! The first line in my code is
Code:
#!/usr/bin/perl
WHAT DID I DO?!?! And how can i get it back to normal and execute using perl.exe??
By the way (if this helps), i tried making the perl script an executable by using PAR and also Perl2Exe.
Comment