How to get first/last n lines from a file?

To get first n lines from a file use the following command.

  head -n 5 login.jsp

To get last n lines from a file use the following command.

  tail -n 5 login.jsp

Search