Linux - 替换文件中的字符串

时间:2015-02-04 23:57:08

标签: linux string unix replace

我有一个包含以下文本部分的文件:

--------------begin------------------              
uncomment for static IP   
iface eth0 inet static  
address 192.168.0.202  
netmask 255.255.255.0  
network 192.168.0.0  
gateway 192.168.0.200  

iface eth1 inet dhcp   
---------------end---------------------

我想将IP地址更改为:192.168.151.23
改变后的文字看起来像这样:

--------------begin------------------  
uncomment for static IP   
iface eth0 inet static  
address 192.168.151.23  
netmask 255.255.255.0  
network 192.168.0.0  
gateway 192.168.0.200  

iface eth1 inet dhcp  
---------------end---------------------

任何人都可以帮我吗?

1 个答案:

答案 0 :(得分:0)

你知道SED命令吗? http://www.grymoire.com/Unix/Sed.html

我希望它有所帮助!