访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

深入解析Linux 常用命令--sed

时间:2019-07-27

常用linux命令_linux常用命令_常用linux命令大全

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 后面通常不接任何内容

linux常用命令_常用linux命令_常用linux命令大全

?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