在我的Linux中,我运行shell:ps -ef | grep Speed,我得到了以下内容:
myid 143410 49092 0 10:21 pts/12 00:00:00 ./OutSpeedyOrderConnection
myid 145492 49053 0 10:35 pts/11 00:00:00 ./SpeedyOrderConnection
这意味着,这两个过程的pid是143410和145492。
然后我运行shell:pgrep -l Speed,我得到以下内容:
143410 OutSpeedyOrderC
145492 SpeedyOrderConn
我运行shell:pgrep OutSpeedyOrderC,我得到了:
143410
pgrep OutSpeedyOrderCo什么都没得到!!!!!
看起来像pgrep只能识别15个字节的进程名, 我跑的时候能做些什么来得到正确的答案 pgrep OutSpeedyOrderConnection?!