head+tail

# head -60 test.txt | tail -11


sed

# sed -n '50,60p' test.txt


awk

# awk '{if(NR>49&&NR<61) printf $1"\n"}' test.txt


grep

# grep 50 -A 10 test.txt

# grep 60 -B 10 test.txt

# grep 55 -C 5 test.txt