Search code examples
linuxshellawksedash

How to avoid the display of the 2 first line from a linux command output?


I have a program that displays many line in the output

How I can make it display the all output except the first 2 lines?


Solution

  • easily using tail command:

    tail -n+3