如何在AWK

时间:2018-02-07 10:26:54

标签: bash awk

result=1
# more code here...
my_command_here... | awk '{
        if (/(this text exists in the stdout)/)
            result=$?
    }'

如果0中的标准输出包含my_command_here,我希望将结果更改为this text exists in the stdout(成功退出)的值。

result=$?部分外,一切正常。如何在awk中设置一个变量?

0 个答案:

没有答案