Help for this page

Select Code to Download


  1. or download this
       open (my $i, "+<", $name) or warn $!;   ### FAILS HERE ###
       while (<$i>) {
    ...
         print $csv "$i,\n";
         print "$i,\n";
       }
    
  2. or download this
    sub _ce {
        print "IN CE SUB\n";
    ...
        print $csv "\n\nHost,Entitled CPU and RAM as of @asof,\n\n";
        return;
    }