#!/perl/bin/perl
use strict;
#use CGI qw(:all); #Install this module!
#print header; #Life will get much easier!
print "Content-type: text/html\n\n";
# Or you can hand code like the above all you want
my @output = `echo %path%`;
# my @output = `set`; #see all the goodies
print "Your web browsers path:
@output";