下面可能是你不曾用过后十个Linux的命令。相当的有用。 1)pgrep pgrep名字前有个p,我们可以猜到这和进程相关,又是grep,当然这是进程相关的grep命令。不过,这个命令主要是用来列举进程ID的。如: $ pgrep -u hchen 22441 22444 这个命令相当于: ps -ef | egrep '^hchen' | awk '{print $2}' 2)pstree 这个命令可以以树形的方式列出进程。如下所示: [hchen@RHELSVR5 ~]$ pstree init-+-acpid…