[[perl]]
 

Perl

#! /usr/bin/perl
 
print "Content-type: text/plain\n\n";
 
print "This is output from simple Perl script \n";
print "\n";
 
foreach $var (sort(keys(%ENV))) {
    $val = $ENV{$var};
    $val =~ s|\n|\\n|g;
    $val =~ s|"|\\"|g;
    print "${var}=\"${val}\"\n";
}
 
perl.txt · Last modified: 2008/03/06 13:00 (external edit)
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki