I've got a .pl file and i don't know how to open it. I know it's perl, so I downloaded ActivePerl and that program just didn't work. I downloaded UltraEdit but that just reads the like source of it and doesnt run it. help? I really need it And yes, i am a noob
you have to call perl to "run". if perl isnt in your path, you have to give the full path. C:\perl\perl.exe script.pl And if this would work only if you are currently in the directory where the script is located. All of that is from a command prompt.
If you're trying to run it on a UNIX or Linux box, you can put a #! at the top of the script to specify the interpreter: #!/usr/bin/perl (or wherever your perl is installed) ...Rest of script... Then just run it: ./script.pl