Help for this page

Select Code to Download


  1. or download this
    open( SANCLI, "datapath query essmap |" ) or die "unable to open pipe.
    +.. $!";
    $_ = <SANCLI>;  # read first line, do nothing with it
    while(<SANCLI>) {
        ...
    
  2. or download this
    open( SANCLI, "datapath query essmap |" ) or die "unable to open pipe.
    +.. $!";
    $_ = <SANCLI>;
    ...
        @fields{@col_headings} = split;
        ...
    }