Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    print Dumper \%files;
    print "Total size = $total_count lines.\n";
    
  2. or download this
    $ perl  line_count.pl
    $VAR1 = {
    ...
              './subdiscard.pl' => '23'
            };
    total size = 284 lines.
    
  3. or download this
    use strict;
    use warnings;
    ...
    }
    
    print "Total size = $total_count lines.\n";
    
  4. or download this
    $ perl  line_count.pl
    ./schwartz.pl    27
    ...
    ./subdiscard3.pl         12
    ./sum.pl         19
    Total size = 284 lines.