Linux:文档编辑:sed;sed 命令

利用脚本来处理编辑文本文件

自动编辑一个或多个文件、简化对文件的反复操作、编写转换程序等

REFERENCE:

The Syntax of sed

sed [ -hnV ][ -e <script> ][ -f <script文件> ][ 文本文件 ]

Argument

ArgumentDescription
-e <script>--expression=<script>指定 script 来处理文本文件
-f <script文件>--file=<script文件>指定 script文件来处理文本文件
-h--help显示帮助
-n--quiet or --silent仅显示 script 处理后的结果
-V--version显示版本信息

Action

ActionInterpretationDescription
a新增a 的后面可以接字串,这些字串会在新的一行出现(目前的下一行)
c整行替换替换指定行
d删除因为是删除啊,所以 d 后面通常不接任何咚咚
i插入i 的后面可以接字串,而这些字串会在新的一行出现(目前的上一行)
p打印亦即将某个选择的数据印出。通常 p 会与参数 sed -n 一起运行
s关键字替换可以直接进行取代的工作哩!通常这个 s 的动作可以搭配正规表示法!例如 1,20s/old/new/g 就是啦
c 整行替换
sed '3c xxx' file
sed '3,4c xxx' file
s 关键字替换
FlagsFunction
n[1,512] 内的数字,表示第几次替换s/old/new/n
g全替换,不加 g 则只替换第一次s/old/new/g
p打印
w file将缓冲区的内容 > 指定文件中
&用正则表达式匹配的内容进行替换
\n匹配第 n 个子串
  1. 只替换第 1 个匹配的字段

    sed 's/old/new/' file
    sed 's/old/new/1' file
    
  2. 值替换第 n 个匹配的字段

    sed 's/old/new/5' file
    
y 多字符替换
sed 'y/123/abc/' file # 1->a 2->b 3->c
abc45
p 打印
nl /etc/passwd | sed -n '5,7p'
     5	lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
     6	sync:x:5:0:sync:/sbin:/bin/sync
     7	shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
w 移动数据

将源文件中的指定行,写入目标文件

sed '2,4 target.txt' origin.txt
r
sed 'nr origin.txt' target.txt # 将源文件写入到目标文件的第 n 行后
sed '$r origin.txt' target.txt # 将源文件追加到目标文件
q
sed '3q' file # 第一次匹配结束后退出,不再对后续数据处理。起到查看文件头部内容的作用

Exercise

新增

sed -e 4a\ newLine file # 在 file 文件的第 4 行后新增一行
1
2
3
4
newLine
5
nl /etc/passwd | sed '2i drink tea' # 在第 2 行前新增 “drink tea”
nl /etc/passwd | sed '2a drink tea' # 在第 2 行后新增 “drink tea”
     1	root:x:0:0:root:/root:/bin/bash
     2	bin:x:1:1:bin:/bin:/sbin/nologin
drink tea
     3	daemon:x:2:2:daemon:/sbin:/sbin/nologin
nl /etc/passwd | sed '1a Drink tea \
drink beer' # 在第 1 行后新增多行,行间要用 \ 标识
     1	root:x:0:0:root:/root:/bin/bash
Drink tea 
drink beer
     2	bin:x:1:1:bin:/bin:/sbin/nologin

替换

nl /etc/passwd | sed '2,5c No 2-5 number' # 将第 2~5 行的内容替换为 “No 2-5 number”
     1	root:x:0:0:root:/root:/bin/bash
No 2-5 number
     6	sync:x:5:0:sync:/sbin:/bin/sync

删除

nl /etc/passwd | sed '2,5d' # 删除 2~5 行
     1	root:x:0:0:root:/root:/bin/bash
     6	sync:x:5:0:sync:/sbin:/bin/sync
nl /etc/passwd | sed '3,$d' # 删除 3 往后的
     1	root:x:0:0:root:/root:/bin/bash
     2	bin:x:1:1:bin:/bin:/sbin/nologin

搜寻+打印

nl /etc/passwd | sed '/User/p' -n # 搜寻包含 User 的行 -n 只打印匹配到的行
    12	ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
    16	polkitd:x:999:998:User for polkitd:/:/sbin/nologin

搜寻+删除

nl /etc/passwd | sed '/sbin/d' # 搜寻包含 sbin 的行,展示删除后的结果
     1	root:x:0:0:root:/root:/bin/bash
    20	mysql:x:27:27:MySQL Server:/var/lib/mysql:/bin/false

搜寻后执行命令

搜索 /etc/passwd,找到 root 对应的行,执行后面花括号中的一组命令,每个命令之间用分号分隔,这里把 bash 替换为 blueshell;输出行;退出

nl /etc/passwd | sed -n '/root/{s/bash/blueshell/;p;q}'
     1	root:x:0:0:root:/root:/bin/blueshell

搜寻后替换

语法与 vim 类似

sed 's/old/new/g'
实例:查询本机 IP
/sbin/ifconfig ens33
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.10.222  netmask 255.255.255.0  broadcast 192.168.10.255
        inet6 fe80::20c:29ff:fe75:4859  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:75:48:59  txqueuelen 1000  (Ethernet)
        RX packets 13129  bytes 1097832 (1.0 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 12907  bytes 10828334 (10.3 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
/sbin/ifconfig ens33 | grep 'inet '
        inet 192.168.10.222  netmask 255.255.255.0  broadcast 192.168.10.255
/sbin/ifconfig ens33 | grep 'inet ' | sed 's/inet //g'
        192.168.10.222  netmask 255.255.255.0  broadcast 192.168.10.255
/sbin/ifconfig ens33 | grep 'inet ' | sed 's/inet //g' | sed 's/ netmask.*$//g'
        192.168.10.222

多点编辑

sed -e 'xx' -ed 'xx'

尾行插入

sed -i '$a xx' file # $ 代表最后一行
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值