printenv.pl to HTML.

index -|- end

Generated: Tue Feb 2 17:54:54 2010 from printenv.pl 2007/03/19 533.

#!/perl -w
# NAME: printenv.pl
# AIM: print out the environment strings ...
use strict;
use warnings;
require 'logfile.pl' or die "Unable to load logfile.pl ...\n";
# log file stuff
my ($LF);
my $outfile = 'temp.'.$0.'.txt';
if ($0 =~ /\w{1}:\\.*/) {
   my @tmpsp = split(/\\/,$0);
   $outfile = 'temp.'.($tmpsp[-1]).'.txt';
}
open_log($outfile);
prt( "$0 ... Hello, World ...\n" );
foreach my $key (sort keys(%ENV)) { 
      prt( "$key = $ENV{$key}\n" ); 
} 
close_log($outfile,1);
exit(0);
# eof - printenv.pl

index -|- top

checked by tidy  Valid HTML 4.01 Transitional