ps -ef|grep
时间: 2023-09-29 07:03:11 浏览: 70
windows下的grep工具
It seems like the command is incomplete. After "grep", you should provide a pattern to search for. For example:
```
ps -ef | grep python
```
This command will show all processes running on the system, and then filter the results to only show those containing the word "python".
阅读全文