我注意到,tail +2
是Solaris ksh的支持,但在Red Hat Linux上,將出現一個錯誤:Linux支持「tail +2」嗎?
c008>> ps -p 4009,6282,31401,31409 | tail +2
tail: cannot open `+2' for reading: No such file or directory
而在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
的PID TTY TIME CMD
的線路由「尾排除+2" 。
我知道grep -v PID
會工作。但我不知道Linux尾巴是否有類似的選擇?