Help for this page

Select Code to Download


  1. or download this
    while (<INFILE>)
    {
         next if /^#/;
    ...
         my ($infile, $dir, $type) = split;
         print "$infile $dir $type\n";
    }
    
  2. or download this
    while (<INFILE>)
    {
         next if /^#/;
    ...
         my @split = (split)[0..2];
         print "@split\n";
    }