Linux Tail Command
Related to:: Linux – SysAdmin Command to see the last lines of a file directly in the terminal. By default, it shows the last 10 lines of a file. tail filename To get a different number of lines you can use the -n number option tail -n 2 filename # Shows 2 lines tail -n …