in reply to (OT) cgi: relative v. absolute paths, Apache
Update: I was completely on the wrong track, please ignore
Just useTo find your current working directory. I'm sure it's somewhere in the Apache docs, but this could be a lot easier than finding the appropriate place in the docs :-)#!/usr/bin/perl use Cwd; print "Content-Type: text/plain\n\n" print getcwd(), $/;
|
|---|