首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

Linux ps打印某个进程上的所有线程

2012-09-02 
Linux ps打印某个进程下的所有线程注意:xxxx表示pid?1、ps -mp xxxx -o THREAD???? 在当前用户下,列出pid包

Linux ps打印某个进程下的所有线程

注意:xxxx表示pid

?

1、ps -mp xxxx -o THREAD

???? 在当前用户下,列出pid包含的所有线程。

?

2、ps -mp xxxx -o THREAD? >> /tmp/thread.txt

???? 在当前用户下,列出pid包含的所有线程。并把结果增量输出到文件/tmp/thread.txt。

?

3、ps -mp xxxx -o THREAD,tid

???? 在当前用户下,列出pid包含的所有线程信息及本地线程ID(tid)。

?

4、ps -mp xxxx -o THREAD |wc -l

???? 在当前用户下,列出pid包含的所有线程的个数。

???? “wc -l”是统计记录的行数。


?

参考资料:

1、http://www.kuqin.com/aixcmds/aixcmds4/ps.htm

2、http://hi.baidu.com/xmltiger/blog/item/1ae27f13ab82b256f919b853.html

3、http://www.9linux.com/ps.html

?

热点排行