in reply to Re^2: Reading specific lines in a file
in thread Reading specific lines in a file

It is using implicitly both $. and $_. A possible expanded form could be:
perl -ne 'print $_ if $. >= 60 and $. <= 70' file.txt
or, expanding further:
perl -e 'while (<>) {print $_ if $. >= 60 and $. <= 70;}' file.txt