如何使用ps和grep显示PID<100的进程?
How to display PID<100 processes by using ps and grep?
有没有办法用ps -ef|grep命令显示一定范围内的进程,比如说少100?
使用 awk:
$ ps -ef | awk '<100'
有没有办法用ps -ef|grep命令显示一定范围内的进程,比如说少100?
使用 awk:
$ ps -ef | awk '<100'