File Perl

#!/usr/bin/perl
while(<>){
   print "$.\t$_";
   if (eof){
      print "-" x 30, "\n";
      close(ARGV);
   }
}