##
tail -n +60 wordlist|head -10
####
perl -ne 'print if $. ~~ [60..70]' wordlist
####
perl -e 'my @lines=`cat wordlist`;print @lines[60..70];'
####
perl -e 'print @(`cat wordlist`)[60..70];'
####
perl -e 'print (@(`cat wordlist`))[60..70];'