linux process 相关命令
时间:2014-08-08 18:00:56
收藏:0
阅读:245
1、显示指定用户信息:ps -u root
2、显示所有进程信息,连同命令行:ps -ef
3、 ps 与grep 常用组合用法,查找特定进程:ps -ef|grep ssh
4、 把所有进程显示出来,并输出到ps001.txt文件:ps -aux > ps001.txt
评论(0)