Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w 
    ######################################################################
    +##
    ...
    while (<FH>) {
      printf "%d:%s",$line++,<FH>;
    }
    
  2. or download this
    --$  ./filetest.pl
    Content-type: text/plain
    ...
    
    1:####################################################################
    +####
    --$
    
  3. or download this
    #!/usr/bin/perl -w 
    ######################################################################
    +##
    ...
    while (<FH>) {
      printf "%d:%s",$line++,$_; #  $_ vs. <FH>
    }
    
  4. or download this
    --$  ./filetest.pl
    Content-type: text/plain
    ...
    13:  printf "%d:%s",$line++,$_;
    14:}
    --$