标签:www \n 匹配 www. 常用 表示 roo 规则 空格替换
1、将空格替换成换行sed "s/ /\n/g" yum.old.txt
cat yum.new3.txt |tr "\n" " "
sed "s/ [\]$//g" yum.new.txt
sed "s/$/ \\\/g" yum.new3.txt
#原文件
[root@docker soft]# cat -A test.txt
huilong$
uc $
sso $
index $
hq $
static $
news $
broker $
edu $
px $
bbs $
www $
salon $
gold $
cms $
m.salon$
#匹配规则 空格加*表示匹配任意多个空格
[root@docker soft]# sed "s/ *$//g" test.txt > test2.txt
#最终结果
[root@docker soft]# cat -A test2.txt
huilong$
uc$
sso$
index$
hq$
static$
news$
broker$
edu$
px$
bbs$
www$
salon$
gold$
cms$
m.salon$
#原文件
[root@docker soft]# cat -A test2.txt
huilong$
uc$
sso$
index$
hq$
static$
news$
broker$
edu$
px$
bbs$
www$
salon$
gold$
cms$
m.salon$
#例如在每行字符串结尾添加一个域名后缀.forex.com.cn
#匹配规则 测试ok
[root@docker soft]# sed "s/$/.forex.com.cn/g" test2.txt
huilong.forex.com.cn
uc.forex.com.cn
sso.forex.com.cn
index.forex.com.cn
hq.forex.com.cn
static.forex.com.cn
news.forex.com.cn
broker.forex.com.cn
edu.forex.com.cn
px.forex.com.cn
bbs.forex.com.cn
www.forex.com.cn
salon.forex.com.cn
gold.forex.com.cn
cms.forex.com.cn
m.salon.forex.com.cn
标签:www \n 匹配 www. 常用 表示 roo 规则 空格替换
原文地址:http://blog.51cto.com/haowenliu/2163554