当inputpgrep wget ,它显示进程ID 10144
pgrep wget
10144
但是如何知道这个进程id的细节是什么
使用-f和-l参数:
-f
-l
pgrep -fl wget
使用ps命令:
ps
ps ax | grep wget | grep -v grep