1、将空格替换成换行
sed "s/ /\n/g" yum.old.txt
2 将换行替换成空格
cat yum.new3.txt |tr "\n" " "
2、将每一行最后的空格+\替换掉
sed "s/ [\]$//g" yum.new.txt
3、在每一行最后添加 \
sed "s/$/ \\\/g" yum.new3.txt
4、将文本中每行字符串后面的空格去掉
#原文件
[[email protected] soft]# cat -A test.txt
huilong$
uc $
sso $
index $
hq $
static $
news $
broker $
edu $
px $
bbs $
www $
salon $
gold $
cms $
m.salon$
#匹配规则 空格加*表示匹配任意多个空格
[[email protected] soft]# sed "s/ *$//g" test.txt > test2.txt
#最终结果
[[email protected] soft]# cat -A test2.txt
huilong$
uc$
sso$
index$
hq$
static$
news$
broker$
edu$
px$
bbs$
www$
salon$
gold$
cms$
m.salon$
5、将文件中每行字符后面拼接一段相同的字符串。
#原文件
[[email protected] 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
[[email protected] 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
原文地址:http://blog.51cto.com/haowenliu/2163554
时间: 2024-10-12 19:05:10