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中设置一个变量?