一致する文字列を他の文字列に置き換えようとしています。これが私が持っているものです
ZKHOSTS="host1,host2,host3"
old_string="tsd.storage.hbase.zk_quorum*"
new_string="tsd.storage.hbase.zk_quorum = $ZKHOSTS"
sed -i '/$old_string/c\$new_string' /etc/opentsdb/opentsdb.conf
期待通りに動作しません。
私もフォローしてみました
sed -i 's/$old_string/$new_string/g' /etc/opentsdb/opentsdb.conf
sed -i '/${old_string}/${new_string}/g' /etc/opentsdb/opentsdb.conf
ここで何を間違っているのか分かりません。
答え1
次のように二重引用符を使用する必要があります。
sed -i "s/$old_string/$new_string/g" /etc/opentsdb/opentsdb.conf