标签:ps 命令
1基本命令
ps -ef
或者
ps aux
-e 等于-A 所有的进程
-f does full-format listing. This option can be combined with many other UNIX-style options to add additional columns
2. 指定用下使用的进程:
ps -f -u www
3. 指定格式输出
ps -A -o stat,pid,ppid,cmd
4. 树状形式输出tree
ps axjf
或者
ps -efjH
5 高级点的命令
查看线程数:
ps -efL
本文出自 “残剑” 博客,请务必保留此出处http://cuidehua.blog.51cto.com/5449828/1961190
标签:ps 命令
原文地址:http://cuidehua.blog.51cto.com/5449828/1961190