İki dosyam var: file1
ve file2
.
file1
aşağıdaki içeriğe sahiptir:
---
host: "localhost"
port: 3000
reporter_type: "zookeeper"
zk_hosts:
- "localhost:2181"
file2
bir IP adresi içerir ( 1.1.1.1
)
Yapmak istediğim şey localhost
bununla değiştirmektir 1.1.1.1
, böylece sonuç şöyledir:
---
host: "1.1.1.1"
port: 3000
reporter_type: "zookeeper"
zk_hosts:
- "1.1.1.1:2181"
Denedim:
sed -i -e "/localhost/r file2" -e "/localhost/d" file1
sed '/localhost/r file2' file1 |sed '/localhost/d'
sed -e '/localhost/r file2' -e "s///" file1
Ama ya tüm çizgiyi değiştirdim, ya da IP değiştirmem gerekenden sonra çizgiye gidiyor.
\r
Sed komutuna bak .
cat file1 | sed -e 's/localhost/1.1.1.1/g'
çalışıyor mu?