linux – 在Bash脚本中解析命令输出

我想运行一个命令,提供以下输出并解析它:

[VDB VIEW]
[VDB] vhctest
        [BACKEND] domain.computername: ENABLED:RW:CONSISTENT
        [BACKEND] domain.computername: ENABLED:RW:CONSISTENT
        ...

我只对一些关键作品感兴趣,例如’ENABLED’等.我不能只搜索ENABLED,因为我需要一次解析每一行.

这是我的第一个脚本,我想知道是否有人可以帮助我?

编辑:
我现在有:

cmdout=`mycommand`

while read -r line
do
   #check for key words in $line
done < $cmdout

我认为这样做了我想要的但是它似乎总是在命令输出之前输出以下内容.

./myscript.sh: 29: cannot open … : No such file

我不想写一个文件来实现这一点.

这是psudo代码:

cmdout=`mycommand`

loop each line in $cmdout
   if line contains $1
       if line contains $2
            output 1
       else
            output 0

解决方法:

错误的原因是

done < $cmdout

认为$cmdout的内容是文件名.

你可以这样做:

done <<< $cmdout

要么

done <<EOF
$cmdout
EOF

要么

done < <(mycommand)    # without using the variable at all

要么

done <<< $(mycommand)

要么

done <<EOF
$(mycommand)
EOF

要么

mycommand | while
...
done

但是,最后一个创建一个子shell,当循环退出时,循环中设置的任何变量都将丢失.

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...