您好,我搜索了各种论坛,在这里,我可以找到一些答案为Linux和Mac,但不能找到解决方案为Unix和特别是Korn Shell。
下面参考我从SO发现
This one
And this one also
我试过下面的命令
- ps -eaf | awk '{ print substr($0,index($0,$9)) }'
上面的命令在给定TIME而不是Month和Date的点上失败(因为在这种情况下,字符串中只有8列)
任何建议都会有所帮助。
我认为使用
pgrep
更容易
- $ pgrep bluetoothd
- 441
否则,可以使用awk:
- ps -ef | awk '$8=="name_of_process" {print $2}'
例如,如果ps -efhas一行像:
- root 441 1 0 10:02 ? 00:00:00 /usr/sbin/bluetoothd
然后ps -ef | awk’$ 8 ==“/ usr / sbin / bluetoothd”{print $ 2}’返回441。
In ksh pgrep is not found. and the other solution is failing in case
below is output from ps command jaggsmca325 7550 4752 0 Sep 11 pts/44
0:00 sqlplus dummy_user/dummy_password@dummy_schema
让我们检查最后一列($ NF),不管它的数字:
- $ ps -ef | awk '$NF=="/usr/sbin/bluetoothd" {print $2}'
- 441
如果你想匹配不是确切的字符串,你可以使用〜代替:
- $ ps -ef | awk '$NF~"bluetooth" {print $2}'
- 441
- 1906