Help for this page

Select Code to Download


  1. or download this
    $header_rec .= "NAME ";
       $header_rec .= "ID ";
    ...
       $header_rec .= "STATUS ";
    
    print "[$header_rec]\n";
    
  2. or download this
    my @columns = ('NAME','ID','REGION','UNIT','STATUS');
    print join( "\x09", @columns), "\n";
    # or alternatively
    print "[@columns]\n";