Help for this page

Select Code to Download


  1. or download this
    # returns the $limit largest files from the flist file, 
    # full path to file in $name
    ...
      # and the $limit largest files
      return ($nlines, $total, @lines);
    }
    
  2. or download this
    find /tgt -type f -name input | xargs wc -l
    197898 .../input
    ...
    179495 .../input
    218041 .../input
    1434957 total
    
  3. or download this
    51 opt/src/t.tar 100444 1247464676 290119680 283320 NA 1 0xbe2d 0x4000
    +0006
    
  4. or download this
    ...
    while (<$fh>) {
    ...
      push @lines, $2 . '/' . $1;
    }
    ...