Display Specific line number using tail command

Hi ,
1)i want to display specific line number using tail command.
e.g. display 10 line from end.
Please help...
2)Want to display line 10 to 15 (from end)using tail command)

If you want to view the lines as per the numbers from 10th line to 15th line use

tail +10 your_file.txt | head -5

m searching perticular file using this command
tail -10 `ls -t1 | head -n1`
then
tail +10 `ls -t1 | head -n1` | head -5
is correct

---------- Post updated at 07:42 AM ---------- Previous update was at 07:35 AM ----------

i want to see only 10 line from end

---------- Post updated at 07:43 AM ---------- Previous update was at 07:42 AM ----------

got thanks
tail -11 `ls -t1 | head -n1` | head -1