linux shell 文件内容,Linux用shell修改文件内容[通俗易懂]

2022-09-17 10:24:55 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

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’都是参数,具体干嘛的自己去找文档吧!

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/164465.html原文链接:https://javaforall.cn

0 人点赞