2010-05-19 217 views

回答

1
ps ax will display processes currently running by all users while 
ps aux will display processes currently running by the current user. 

如果你把它們和grep結合起來,希望你能找到你要找的東西。例如:

ps ax | grep yammer 
相關問題