Help for this page

Select Code to Download


  1. or download this
    perl -ne 'print $_ if $. >= 60 and $. <= 70' file.txt
    
  2. or download this
    perl -e 'while (<>) {print $_ if $. >= 60 and $. <= 70;}' file.txt