Help for this page

Select Code to Download


  1. or download this
    sub printfToFile {
      my $file = shift;
    ...
      printf IO "$formatString", @_;
      close IO;
    }
    
  2. or download this
    printfToFile( $logfile, '%-22s', $ifName, $ifLease );