bash帮助在while循环中使用EOF

时间:2016-10-20 10:59:23

标签: bash while-loop eof

我有一个脚本,它逐行读取一些输入信息,然后进入循环,然后,在内部循环中,它根据从输入信息中获取的信息创建带有一些扩展变量的json文件,这些信息不同于不时。

问题在于,当我使用cat& EOF,它打破了while循环,只从输入信息中读取第一行。 你能否建议如何重写脚本,以便在具有EOF功能的循环中断开:

while IFS= read -r snmp_cred; do
echo appliance $ADDM_address and $snmp_cred 
snmp_ip=$(grep -E -o "([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})@" <<< $snmp_cred)
snmp_ip=${snmp_ip%?}
echo IP for snmp community is $snmp_ip

json_file=$DIR/cred.json
remote_dir=/some/remote/dir

cat <<EOF > $DIR/cred.json
    {
        "some", 
        "json,          
    }
EOF


[Here goes some another commands]

done <$DIR/input.txt

1 个答案:

答案 0 :(得分:0)

代码看起来没问题,但您可以避免在这里完全使用cat。只需使用echoprintf

printf '\
{ 
  "ip_range" : "%s",
  "types" : [ "snmp" ],
  "description" : "%s",
  "snmp.version": "v2c",
  "snmp.port" : 161,
  "snmp.community" : "%s",
  "snmp.retries" : 3,
  "snmp.timeout" : 2 }' "$snmp_ip" "$snmp_cred" "$snmp_cred" > "$json_file"

通常,一旦尝试生成动态JSON,就必须担心参数值是否正确编码。在这种情况下,您可能需要考虑使用jq之类的工具生成JSON,而不是手动构建它。

jq -n --arg ipr "$ip_range" --arg cred "$snmp_cred" '{ 
  "ip_range" : $ipr,
  "types" : [ "snmp" ],
  "description" : $cred,
  "snmp.version": "v2c",
  "snmp.port" : 161,
  "snmp.community" : $cred,
  "snmp.retries" : 3,
  "snmp.timeout" : 2 }' > "$json_file"