1
iwinux 2012-06-13 00:16:30 +08:00
htop
|
2
shiny 2012-06-13 00:19:27 +08:00 1
ps aux | grep a.out
|
4
lastmind4 2012-06-13 00:21:20 +08:00 1
ps -ef
能看到所有在跑着的进程及其启动参数 ps -ef | grep a.out 只显示特定的进程相关的信息 |
5
aristotle9 2012-06-13 00:23:00 +08:00 1
ps -ef | grep a.out
|
6
jiangxiao 2012-06-13 09:38:49 +08:00
还可以 cat /proc/$pid/cmdline
|
7
TassoLee 2012-06-13 16:16:22 +08:00
cat /proc/$pid/cmdline +1
|
8
yelusiku 2012-07-24 13:27:28 +08:00
/proc 这个是Linux才有吧?
|