You can run your scripts from anywere just double click them make sure they are associated with perl.exe
E.G.
I created a new text document
new textdocument.txt
and added this code to the file
print qq~
hello world
~;
then renamed it whatever.pl
now i can run it from the command promt
start run type command
then c:\whereever\whatever.pl
to run as CGI we need a bit of info what http server are you using
Main Topics
Browse All Topics





by: cpa802Posted on 2001-02-19 at 09:03:20ID: 5856453
PERL isn't actually compiled, it is interpreted at runtime like unix shell scripts so yes notepad can be used to write your scripts. As for running the programs I only have limited experience with PERL and windows but I assume that you will need some sort of web server on your comupter, I recommend Apache for windows, its free and I'm relativly sure you can get it to work with PERL CGI's. It's downfall is that it expects you to understand how to configure a UNIX web server so you might run in to some problems configuring it (it does come with default settings that work for most PC's).