On Monday 22 October 2001 16:12, Prashant Kukde wrote: > Hi , > I want to load my perl/ CGI script on production server. But, I dont know > the root path... > Is there anyway to get it using perl script or CGI script ?? > > Regards, > Prashant
Hi: This from extropia stuff: #!/usr/bin/perl -w print "Content-type: text/html\n\n"; print "Hello World"; $pwd = `pwd`; print "The Password is: $pwd\n"; The single quotes around pwd on the right side of the = sign, are actually back-tics. hth Tom -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]