Shell编程三剑客grep、sed和awk详解(2)

Shell编程三剑客详解

[root@localhost ~]# nl test.txt | sed '3,5d' //删除第3~5行

Shell编程三剑客详解

[root@localhost ~]# nl test.txt | sed '/cross/d' //删除包含cross的行,原本的第8行被删除

Shell编程三剑客详解

[root@localhost ~]# nl test.txt | sed '/cross/! d' //删除不包含cross的行

[root@localhost ~]# sed '/\.$/d' test.txt //删除以“.”结束的行 [root@localhost ~]# sed '/^$/d' test.txt //删除所有空行 [root@localhost ~]# sed -e '/^$/{n;/^$/d}' test.txt //删除空行,连续的空行留一个 3.替换符合条件的文本

使用sed命令进行替换操作时需要用到的选项:s(字符串替换)、c(整行/整块替换)、y(字符转换)等命令选项。由于测试文件不符合要求,以下就不截图了。

[root@localhost ~]# sed 's/the/THE/' test.txt //将每行中的第一个the替换为THE [root@localhost ~]# sed 's/l/L/2' test.txt //将每行中的第三个“l”替换为“L” [root@localhost ~]# sed 's/the/THE/g' test.txt //将文件中所有的“the”替换为“THE” [root@localhost ~]# sed 's/o//g' test.txt //将文件中所有的“o”删除 [root@localhost ~]# sed 's/^/#/' test.txt //在每行的行首插入“#”号 [root@localhost ~]# sed '/the/s/^/#/' test.txt //在包含“the”的每行行首插入“#”号 [root@localhost ~]# sed 's/$/EOF/' test.txt //在每行行尾插入字符串“EOF” [root@localhost ~]# sed '3,5s/the/THE/g' test.txt //将第3~5行中的所有“the”替换为“THE” [root@localhost ~]# sed '/the/s/o/O/g' test.txt //将包含“the”的所有行中的o替换为“O”

以上“sed -i”的命令则是立即生效的!

[root@localhost ~]# sed -i '1c 1111' a.txt //替换文中第一行的内容为“1111” [root@localhost ~]# sed -i '1a 1111' a.txt //在第一行后面插入一行内容,内容为“1111” [root@localhost ~]# sed -i '1i 2222' a.txt //在第一行前面插入一行内容,内容为“2222” [root@localhost ~]# sed -i '1d' a.txt //删除第一行内容 [root@localhost ~]# sed -n '1p' a.txt //打印出第一行的内容 [root@localhost ~]# sed -i '1s/2222/3333/g' a.txt //将文本第一行内容“2222”替换为“3333” 4.迁移符合条件的文本

使用sed命令进行迁移文本操作时需要用到的选项有:g、G将剪贴板中的数据覆盖/追加到指定行;w保存为文件;r读取指定文件;a追加指定内容。

[root@localhost ~]# sed '/the/{H;d};$G' test.txt //将包含“the”的行迁移到文件末尾,“;”用于多个操作 [root@localhost ~]# sed '1,5{H;d};17G' test.txt //将第1~5行的内容转移到第17行后 [root@localhost ~]# sed '/the/w out.file' test.txt //将包含“the”的行另存为文件out.file [root@localhost ~]# sed '/the/r /etc/hostname' test.txt //将文件/etc/hostname的内容添加到包含“the”的每行以后 [root@localhost ~]# sed '3aNEW' test.txt //在第3行后面插入一个新行,内容为“NEW” [root@localhost ~]# sed '/the/aNEW' test.txt //在包含“the”的每行后插入一个新行,内容为“NEW” [root@localhost ~]# sed '3aNEW1\nNEW2' test.txt //在第3行后面多行内容,中间的“\n”表示换行 5.使用脚本编辑文件

使用sed脚本,将编辑指令存放到文件中(每行一条标记指令),通过“-f”选项来调用。

[root@localhost ~]# sed '1,5{H;d};17G' test.txt //将第1~5行内容转移至第17行后

Shell编程三剑客详解


以上操作转换为脚本文件方式:

[root@localhost ~]# vim 1.list 1,5H 1,5d 17G [root@localhost ~]# sed -f 1.list test.txt

Shell编程三剑客详解

6.sed直接操作文件示例

编写一个脚本,用来调整vsftpd服务配置:禁止匿名用户,但允许本地用户(也允许写入)登录。

[root@localhost ~]# vim local_only_ftp.sh #!/bin/bash S="/usr/share/doc/vsftpd-3.0.2/EXAMPLE/INSERNET_SITE/vsftpd.conf" C="/etc/vsftpd/vsftpd.conf" #指定样本文件路径、配置文件路径 [ ! -e "$C.bak" ] && cp $C $C.bak #备份原来的配置文件,检测(配置文件.bak)是否存在,如果不存在则使用cp命令复制 sed -e '/^anonymous_enable/s/YES/NO/g' $S > $C sed -i -e '/^local_enable/s/NO/YES/g' -e '/^write_enable/s/NO/YES/g' $C grep "listen" $C || sed -i '$alisten=YES' $A #基于样本配置进行调整,覆盖现有文件 systemctl restart vsftpd systemctl enable vsftpd #重启ftp服务,并设置为开机自启动 awk命令工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/45dceeced4ff0e614565a03148a563e1.html