红联Linux门户
Linux帮助

Linux用shell修改文件内容

发布时间:2016-03-04 10:37:42来源:linux网站作者:chenyulancn

sed -i 's/abc/xxx/g' file

abc修改前的字符串
xxx是修改后的字符串
file是要被修改的文件


例如:

我有一个文件是map_server
#!/bin/bash
# chkconfig: 2345 10 90
# description: Starts and Stops the MapServer.

DIRECTORY=xxxxxx

MAPSERVER_HOME=/usr/map/mapserver/$DIRECTORY
MAP_START=$MAPSERVER_HOME/startMap.sh
MAP_STOP=$MAPSERVER_HOME/shutdown.sh

cd $MAPSERVER_HOME


我要修改这个DIRECTORY变量的值
使用如下命令:
sed -i 's/xxxxxx/mapserver5.0/g' map_server


在打开该文件,发现内容已经被改
#!/bin/bash
# chkconfig: 2345 10 90
# description: Starts and Stops the MapServer.

DIRECTORY=mapserver5.0

MAPSERVER_HOME=/usr/map/mapserver/$DIRECTORY
MAP_START=$MAPSERVER_HOME/startMap.sh
MAP_STOP=$MAPSERVER_HOME/shutdown.sh


这里需要注意的是's/ 和/g'都是参数,具体干嘛的自己去找文档吧!


本文永久更新地址:http://www.linuxdiyf.com/linux/18605.html