0

首先,我不知道如何搜索我想做的事情。

我有一个在终端(Linux)中产生输出的 exec。让我们来看一个简单的 C 程序 a.out:

#include <stdio.h>
int main (int argc, char *argv[]) {
int i=0;
float j=0;
for(i=0; i<=10000000;i++)
  {
    j = i*-1e-5;
    printf (" %d 2.0 %f 4.0 5.0\n",i,j);
  }
}

产生的输出如下:

 0 2.0 -0.000000 4.0 5.0
 1 2.0 -0.000010 4.0 5.0
 2 2.0 -0.000020 4.0 5.0
 3 2.0 -0.000030 4.0 5.0
 ...

根据这个输出我想:

  1. 启动这个执行
  2. “捕获”输出
  3. 如果第 3 列值达到 -0.5,则停止/杀死 exec

你将如何做到这一点?

例如,这个脚本 exec.sh 不会停止 exec:

#/bin/sh
PROG=./a.out
$PROG > output  &
progpid=$!

(tail -fn 0 output & echo $! > tailpid ) | awk -v progpid=$progpid '{
    if($3<=-0.5){
      system("kill "progpid)
      # system( ##update other file )
      system("kill $(<tailpid)")
    }
 }'

有任何想法吗 ?

提前致谢

4

1 回答 1

1

我认为这种结构可以解决您的所有观点:

programname > output &
progpid=$!
(tail -fn 0 output & echo $! > tailpid ) | awk -v progpid=$progpid '{ 
    if( condition ) { 
        system("kill "progpid)
        system( ##update other file )
        system("kill $(<tailpid)")
    }
}'

我们在后台运行程序并将输出重定向到output. 然后我们使用 tail 选项监视output它的更新-f,该选项在添加行时从文件末尾读取行。然后我们通过管道将它输入awk,如果条件满足,它可以运行系统命令来终止程序进程,然后运行另一个命令来更新您单独文本文件中的参数,然后运行另一个命令来终止tail,这样它就不会挂起永远的背景(一旦被杀死awk也将退出)。tail

于 2013-05-24T16:04:05.657 回答