我正在尝试使用cli命令然后grep 717GE捕获多个远程设备的输出并打印到多个主机的屏幕。如下所示,它从$ hosts捕获IP并将其传递给$ outip,而不是从命令行使用相同命令时显示的内容。我以为变量会捕获从给定命令返回的数据。有人可以帮助我并帮助我理解我做错了什么吗?我真的很有兴趣学习,所以请不要犹豫不决。如果可能的话。
for host in ${hosts[@]}; do
seven=( $(cli $hosts show gpon ont summary -n --max=3 --host ) )
outip=( $(grep 717GE $seven) )
echo $outip
done
输出:
+ for host in '${hosts[@]}'
+ seven=($(cli $hosts show gpon ont summary -n --max=3 --host ))
++ cli 10.100.112.2 show gpon ont summary -n --max=3 --host
+ outip=($(grep 717GE $seven))
++ grep 717GE 10.100.112.2 grep: 10.100.112.2: No such file or directory
答案 0 :(得分:1)
除非你想创建一个数组,否则不要使用var=( .. )
,并使用bash here-string grep something <<< "$var"
(相当于echo "$var" | grep something
)来搜索匹配的行(否则你'再说$var
包含要搜索的文件名列表,以及为grep
设置的一些选项:
for host in ${hosts[@]}; do
# Assign as variable rather than array, and use $host instead of hosts
seven=$(cli $host show gpon ont summary -n --max=3 --host )
# Grep with "$seven" as text input and not as a list of filenames
outip=$(grep 717GE <<< "$seven")
echo "$outip"
done