- 求职 : Linux运维
- 论坛徽章:
- 203
|
-r 选项是脱义
sed
注意:p写在单引号里面和单引号外面都可以!
[root@steven ~]# sed '10'p -n /etc/passwd
uucp :10:14:uucp:/var/spool/uucp:/sbin/nologin
[root@steven ~]# sed '10p' -n /etc/passwd
uucp :10:14:uucp:/var/spool/uucp:/sbin/nologin
d写在单引号里面和单引号外面都可以!
复制代码
root@steven ~]# sed '1,30'd /etc/passwd
user1 :502:502::/home/user1:/bin/bash
xp :503:503::/home/xp:/bin/bash
wrg :504:504::/home/wrg:/bin/bash
lct :505:505::/home/lct:/bin/bash
apache :48:48:Apache:/var/www:/sbin/nologin
hua :506:506::/home/hua:/bin/bash
user3 :507:507::/home/user3:/bin/bash
user4 :508:508::/home/user4:/bin/bash
[root@steven ~]# sed '1,30d' /etc/passwd
user1:x:502:502::/home/user1:/bin/bash
xp:x:503:503::/home/xp:/bin/bash
wrg:x:504:504::/home/wrg:/bin/bash
lct:x:505:505::/home/lct:/bin/bash
apache:x:48:48:Apache:/var/www:/sbin/nologin
hua:x:506:506::/home/hua:/bin/bash
user3:x:507:507::/home/user3:/bin/bash
user4:x:508:508::/home/user4:/bin/bash
复制代码
sed (用在 查找/替换 's///g' 和 删除 d -i , 如果单纯只是查找 完全可以用grep代替 ,sed无法用颜色标记)
p:print 打印,-n:只打印特定行 -n和p连用: sed '1,4'p -n 1.txt; sed '5,$'p -n 1.txt
打印包含某个字符串的行,可以使用 ^ . * $等特殊符号 sed -n '/ro*t/'p 1.txt ;o,|,t 三选一 没有特别意思 sed -r -n '/ro[o|t]/p' 1.txt
脱义 -r: sed -r -n '/ro?t/'p 1.txt
root或者mysql: sed -r -n '/root|mysql/p' 1.txt
-e 可以实现同时进行多个任务 并且,就像传送带: sed -e '/root/p' -e '/body/p' -n 1.txt 也可以用;实现 sed '/root/p; /body/p' -n 1.txt
删除行 : sed '/root/d' 1.txt ; sed '1d' 1.txt ; sed '10,$d' 1.txt
替换,其中s就是替换的意思,g为全局替换,否则只替换第一次的,/也可以为 #, @ 等: sed '1,2s/ot/to/g' 1.txt ; sed '1,$s/ot/to/g' 1.txt 等价于 sed 's/ot/to/g' 1.txt
大小写替换: 大写 sed -i 's/[a-z]/\u&/g' 1.txt ;小写 sed -i 's/[a-z]/\l&/g' 1.txt
删除所有数字: sed 's/[0-9]//g' 1.txt
删除所有非数字: sed 's/[^0-9]//g' 1.txt
\1 代表第一个括号
调换两个字符串位置,\1\2\3 分段,可以用aa:bb:cc做一下练习 : head -n2 1.txt |sed 's/\(root\)\(.*\)\(bash\)/\3\2\1/'
在文件中某一行例如root行最后添加一个数字 sed -r 's/(^root.*)/\1 12/' /etc/passwd \1表示(^a.*)
或者去除某个分段: echo aaa_bbb_ccc_01_022615.trig_02262015|sed "s/\(aaa\)\(.*\)\($n\)/\1\2/"
直接修改文件内容 : sed -i 's/ot/to/g' 1.txt
跟vim的末行模式替换是一样的 :6,10s/iptables/IP/g 等同于 sed -i '6,10s/iptables/IP/g' 22.txt
替换的时候顺便进行备份 -i.bak : sed -i.bak 's/enabled/disabled/' /etc/selinux/config
修改selinux为disabled: sed -i 's/enabled/disabled/' /etc/selinux/config
sed练习题:
把/etc/passwd 复制到/root/test.txt,用sed打印所有行
打印test.txt的3到10行
打印test.txt 中包含 'root' 的行
删除test.txt 的15行以及以后所有行
删除test.txt中包含 'bash' 的行
替换test.txt 中 'root' 为 'toor'
替换test.txt中 '/sbin/nologin' 为 '/bin/login'
删除test.txt中5到10行中所有的数字
删除test.txt 中所有特殊字符(除了数字以及大小写字母)
把test.txt中第一个单词和最后一个单词调换位置
把test.txt中出现的第一个数字和最后一个单词替换位置
把test.txt 中第一个数字移动到行末尾
在test.txt 20行到末行最前面加 'aaa:',& 表示的是要被替换的部分 aaa:&: sed '20,$s/.*/aaa:&/' test.txt
在test.txt 的每行后面加空格 12 sed 's/.*/& 12/' test.txt
比如大小写替换:大小写替换: 大写 sed -i 's/[a-z]/\u&/g' 1.txt ;小写 sed -i 's/[a-z]/\l&/g' 1.txt
使用sed 过滤一段时间范围内的nginx日志: sed -n '/01\/Mar\/2016:20:52/,/01\/Mar\/2016:21:14:2/'p www.log |wc -l
在/etc/passwd文件中在以第一个mail开头的行到以一个ftp开头的行的后面添加abc,并在abc前面加一个空格
sed '/^www\>/,/^www1\>/s/$/ abc/' /etc/passwd
|
|