I noticed that tail +2 is supported in Solaris ksh, but in Red Hat Linux, an error will occur:
c008>> ps -p 4009,6282,31401,31409 | tail +2
tail: cannot open `+2' for reading: No such file or directory
While in Solaris,
bjbldd>> ps -p 2622,16589,11719,846 |tail +2
16589 ?? 0:00 xterm
846 pts/180 0:00 cscope
11719 pts/180 0:00 cscope
2622 pts/114 0:00 apxcscop
The line of PID TTY TIME CMD is excluded by “tail +2”.
I know grep -v PID will work. But I wonder if there is similar options for Linux tail?
From
tail(1):So try
-n +2or--lines=+2: