InterviewSolution
#Display first 10 lines of the file - application.log
head application.log
#Display first 50 lines of the file - application.log
head -50 application.log
#Display last 10 lines of the file - application.log
tail application.log
#Display last 50 lines of the file - application.log
tail -50 application.log
Your experience on this site will be improved by allowing cookies. Read Cookie Policy