sed常用方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sed常用方法相关的知识,希望对你有一定的参考价值。
1、将空格替换成换行
sed "s/ /
/g" yum.old.txt
2 将换行替换成空格
cat yum.new3.txt |tr "
" " "
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
以上是关于sed常用方法的主要内容,如果未能解决你的问题,请参考以下文章