sed是一个功能十分强大的文本处理命令,本文主要介绍一些常用的文本处理方法。
?sed [-nefri] ‘command’ 输入文本/文件
?-n∶取消默认的输出,使用安静(silent)模式。
-e∶进行多项编辑,即对输入行应用多条sed命令时使用. 直接在指令列模式上进行 sed 的动作编辑
-f∶指定sed脚本的文件名. 直接将 sed 的动作写在一个档案内, -f filename 则可以执行 filename 内的sed 动作
-r∶sed 的动作支援的是延伸型正则表达式的语法。(预设是基础正则表达式语法)
-i∶直接修改读取的文件内容,而不是由屏幕输出
p∶ 列印,亦即将某个选择的资料印出。通常 p 会与参数 sed -n 一起用
?i ∶ 插入, i 的后面可以接字串,而这些字串会在新的一行出现(目前的上一行)
?a ∶ 新增, a 的后面可以接字串,而这些字串会在新的一行出现(目前的下一行)
?d ∶ 删除linux常用命令,因为是删除,所以 d 后面通常不接任何内容
?c ∶ 取代, c 的后面可以接字串,这些字串可以取代 n1,n2 之间的行
?s∶ 取代,可以直接进行替换的工作。通常这个 s 的动作可以搭配正则表达式。例如 1,20s/old/new/g
?/ /: 模式匹配
直接修改文件,不带该选项是不会操作文件,只会显示处理结果
[root@smart Desktop]# cat test.log
Apr 21 15:34:49 smart root: hello
Apr 21 15:34:59 smart root: hello2
Apr 22 15:45:55 smart test1.bin: test1.c main 15
Apr 22 15:46:08 smart test1.bin: test1.c main 15
[root@smart Desktop]# sed "s/root/user/g" test.log
Apr 21 15:34:49 smart user: hello
Apr 21 15:34:59 smart user: hello2
Apr 22 15:45:55 smart test1.bin: test1.c main 15
Apr 22 15:46:08 smart test1.bin: test1.c main 15
[root@smart Desktop]# cat test.log
Apr 21 15:34:49 smart root: hello
Apr 21 15:34:59 smart root: hello2
Apr 22 15:45:55 smart test1.bin: test1.c main 15
Apr 22 15:46:08 smart test1.bin: test1.c main 15
[root@smart Desktop]# sed -i "s/root/user/g" test.log
[root@smart Desktop]# cat test.log
Apr 21 15:34:49 smart user: hello
Apr 21 15:34:59 smart user: hello2
Apr 22 15:45:55 smart test1.bin: test1.c main 15
Apr 22 15:46:08 smart test1.bin: test1.c main 15
上一个教程:Linux基本指令(文件目录类)
下一个教程:运维中常用Linux命令及运维工具