- 论坛徽章:
- 0
|
本帖最后由 wdong_2001 于 2013-12-10 13:58 编辑
HI,ALL
我有这样一个文件内容,现想用sed 替换:
cat test.txt
$deploycommand09181757:192.168.9.31:[ERROR]:t-9:websitetest:stoped
09180224:192.168.9.32:tomcat:t-9:websitetest:stoped
09180348:192.168.9.32:jetty:jetty-6.1.22-bgw:bgw:stoped
想要的结果为
cat test.txt
#09181757:192.168.9.31:[ERROR]:t-9:websitetest:stoped
#09181757:192.168.9.31:[ERROR]:t-9:websitetest:stoped
#09180224:192.168.9.32:tomcat:t-9:websitetest:stoped
#09180348:192.168.9.32:jetty:jetty-6.1.22-bgw:bgw:stoped
替换的命令为
sed -i "/#/b; s@$deploycommand@#$deploycommand@" test.txt
说明:
$deploycommand 为test.txt中的每一条内容,但在处理有[ERROR]行时,sed替换不成功。有没有什么好的方法
以下是实际运行的结果: 是不是[ERROR] 识别不了,要加\转义字符啊
cat test.txt
09181757:192.168.9.31:[ERROR]:t-9:websitetest:stoped
09181757:192.168.9.31:[ERROR]:t-9:websitetest:stoped
#09180224:192.168.9.32:tomcat:t-9:websitetest:stoped
#09180348:192.168.9.32:jetty:jetty-6.1.22-bgw:bgw:stoped
附上脚本的内容
if [[ -f test.txt ]]
then
IFS=$'\n'
for deploycommands in `cat text.txt |grep -v "^#" |grep -w ${ip} |grep -w "${app_name}" |grep -w "${intance_name} |awk '{print $0}'`
do
deploycommand=$(echo $deploycommands|awk '{print $0}')
sed -i "/#/b; s@$deploycommand@#$deploycommand@" test.txt
done
fi
谢谢 |
|