Mr *_*ubs 4 linux bash scripting
我想运行一个命令,提供以下输出并解析它:
[VDB VIEW]
[VDB] vhctest
[BACKEND] domain.computername: ENABLED:RW:CONSISTENT
[BACKEND] domain.computername: ENABLED:RW:CONSISTENT
...
Run Code Online (Sandbox Code Playgroud)
我只对一些关键作品感兴趣,例如'ENABLED'等.我不能只搜索ENABLED,因为我需要一次解析每一行.
这是我的第一个脚本,我想知道是否有人可以帮助我?
编辑:我现在有:
cmdout=`mycommand`
while read -r line
do
#check for key words in $line
done < $cmdout
Run Code Online (Sandbox Code Playgroud)
我认为这样做了我想要的但是它似乎总是在命令输出之前输出以下内容.
./myscript.sh:29:无法打开...:没有这样的文件
我不想写一个文件来实现这一点.
这是psudo代码:
cmdout=`mycommand`
loop each line in $cmdout
if line contains $1
if line contains $2
output 1
else
output 0
Run Code Online (Sandbox Code Playgroud)
错误的原因是
done < $cmdout
Run Code Online (Sandbox Code Playgroud)
认为内容$cmdout是文件名.
你可以这样做:
done <<< $cmdout
Run Code Online (Sandbox Code Playgroud)
要么
done <<EOF
$cmdout
EOF
Run Code Online (Sandbox Code Playgroud)
要么
done < <(mycommand) # without using the variable at all
Run Code Online (Sandbox Code Playgroud)
要么
done <<< $(mycommand)
Run Code Online (Sandbox Code Playgroud)
要么
done <<EOF
$(mycommand)
EOF
Run Code Online (Sandbox Code Playgroud)
要么
mycommand | while
...
done
Run Code Online (Sandbox Code Playgroud)
但是,最后一个创建子shell,循环退出时循环中设置的任何变量都将丢失.