in reply to run a CGI script

Hi PikK45,

The nice thing about the CGI script is that STDIN and STDOUT are the same for Perl and the web-server. So without using your AIX web-server you can test any CGI script setting up a input file and then do the following(untested):

cat inputfile | perl script.cgi > outputfile

By adjusting the inputfile and the script.cgi you can see differences in the outputfile. Getting it to work on the AIX server is another thing, but it'll get you started.

Good Luck...Ed

"Well done is better than well said." - Benjamin Franklin