0

我有一个我正在为工作编写的程序。

它连接到我们的 Sco Unix 服务器并运行一个命令,大部分时间都可以正常工作

String command = "ps -eo ruser,pid,ppid,stime,etime,tty,args | sort -k4 | grep /PGProcid="+ProcID+"\\ | grep -v grep"; 

例如,当输出如下所示

ps -eo ruser,pid,ppid,stime,etime,tty,args | sort -k4 | grep /PGProcid=1\ | grep -v grep

但是,如果我尝试对单个数字(通常为 1 但不限于此)执行此操作,即使我知道结果存在,我也不会得到任何结果。

例如,如果我在服务器上有以下结果

# ps -ef | grep /PGProcid=1
 name 29175 29174  0 02:55:57  ttyp15    00:00:00 /xxx/xxx/xxx/prog6 /PGProcid=14
 person2 28201 28199  0 01:15:27  ttyp13    00:00:00 /xxx/xxx/xxx/prog1 /PGProcid=1

然后,如果我执行以下操作

# ps -ef | grep /PGProcid=1\

我没有得到任何结果,但我知道有 1 的结果,如果我使用像 14 这样的两位数,上述方法将有效,将带回结果。

我基本上需要能够为 /PGProcid= 获取 PID 和 PPID 编号。这似乎只在有 1 和 10、11、12 等或 2 和 20、21、22 等的情况下不起作用。

我尝试过 Egrep,并使用 $,但它似乎总是跳过个位数!

编辑:这是我在这台服务器上尝试过的

  # echo $SHELL
  /bin/sh
  ps -ef | grep PGProcid=2
  amanda 23602 25207  0 09:22:58       ?    00:00:06 /xxxxxx /PGProcid=2
  amanda 25207 25203  0   Feb-28       ?    00:00:01 /xxxxxx /PGProcid=2
  root 26389 26034  0 05:15:22   ttyp6    00:00:00 grep PGProcid=2
  amanda 26042 23602  0 04:46:16       ?    00:00:04 /xxxxxx /PGProcid=2

所以 2 当前在他们的服务器上处于活动状态,但是下面没有结果

  # ps -ef | grep /PGProcid=2$
  # ps -ef | grep /PGProcid=2\$
  # ps -ef | grep "/PGProcid=2$"

下面给出了结果,但也选择了任何带有 2 的东西,所以 22 等等,我只在 2 之后

   # ps -ef | grep '/PGProcid=2$'

下面给出一个错误“没有这样的文件或目录”

   # ps -ef | grep `/PGProcid=2$`
4

1 回答 1

1

您的 shell 将尝试$使用环境变量进行扩展。您必须使用以下$任一方法保护它\

grep /PGProcid=1\$

""

grep "/PGProcid=1$"

编辑:更准确地说,您应该使用来匹配word\>末尾的空字符串。由于和都由 shell 解释,因此您也应该保护它们:\>

grep /PGProcid=1\\\>

或者

grep "/PGProcid=1\>"

如果您想进行“单词匹配”(在我看来),您也可以尝试以下-w选项:

grep -w /PGProcid=1
于 2014-03-14T15:41:33.593 回答