1
iwinux Jun 13, 2012
htop
|
2
shiny PRO ps aux | grep a.out
|
4
lastmind4 Jun 13, 2012 ps -ef
能看到所有在跑着的进程及其启动参数 ps -ef | grep a.out 只显示特定的进程相关的信息 |
5
aristotle9 Jun 13, 2012 ps -ef | grep a.out
|
6
jiangxiao Jun 13, 2012
还可以 cat /proc/$pid/cmdline
|
7
TassoLee Jun 13, 2012
cat /proc/$pid/cmdline +1
|
8
yelusiku Jul 24, 2012
/proc 这个是Linux才有吧?
|