您好,登录后才能下订单哦!
一、sed工作流程
sed 是一种在线的、非交互式的编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用 sed 命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有改变,除非你使用重定向存储输出。
Sed 主要用来自动编辑一个或多个文件;简化对文件的反复操作;编写转换程序等
二、命令格式
sed [options] 'command' file(s) sed [options] -f scriptfile file(s)
注:
sed 和 grep 不一样,不管是否找到指定的模式,它的退出状态都是 0
只有当命令存在语法错误时,sed 的退出状态才是非 0
三、支持正则表达式
与 grep 一样,sed 在文件中查找模式时也可以使用正则表达式(RE)和各种元字符。正则表达式是括在斜杠间的模式,用于查找和替换,以下是 sed 支持的元字符。
使用基本元字符集 ^, $, ., *, [], [^], \< \>,\(\),\{\}
使用扩展元字符集 ?, +, { }, |, ( )
使用扩展元字符的方式:
\+
sed -r
四、sed基本用法
常见的命令选项
-e 允许多项编辑 -f 指定 sed 脚本文件名 -n 取消默认的输出,仅显示处理后的结果 -i inplace,就地编辑 -r 支持扩展元字符 -h 显示帮助
常见的操作
a:增加,在当前行下面增加一行指定内容 c:替换,将选定行替换为指定内容 d:删除,删除选定的行 i:插入,在选定行上面插入一行指定内容,忽略大小写 p:打印,如果同时指定行,表示打印指定行,如果不指定行,则表示打印所有内容;如果有非打印字符,则以ASCII码输出。 s:替换,替换指定字符 y:字符转换 G:取出暂存缓冲区的内容,将其复制到模式空间,追加在原有内容后面 g:取出暂存缓冲区的内容,将其复制到模式空间,覆盖该处原有内容 x:交换暂存缓冲区与模式空间的内容 r:从文件中读 w:将行写入文件
五、sed命令示例
删除命令:d
# sed -r '3d' datafile # sed -r '3{d;}' datafile # sed -r '3{d}' datafile # sed -r '3,$d' datafile # sed -r '$d' datafile # sed -r '/north/d' datafile # sed -r '/sout/d' datafile
替换命令:s
# sed -r 's/west/north/g' datafile # sed -r 's/^west/north/' datafile # sed -r 's/[0-9][0-9]$/&.5/' datafile //&代表在查找串中匹配到的内容 # sed -r 's/Hemenway/Jones/g' datafile # sed -r 's/(Mar)got/\1ianne/g' datafile # sed -r 's#3#88#g' datafile
读取命令:r
# sed -r '/Suan/r /etc/newfile' datafile # sed -r '2r /etc/hosts' a.txt # sed -r '/2/r /etc/hosts' a.txt
写文件命令:w
# sed -r '/north/w newfile' datafile # sed -r '3,$w /new1.txt' datafile
追加命令:a
# sed -r '2a\1111111111111' /etc/hosts # sed -r '2a\1111111111111\ > 222222222222\ > 333333333333' /etc/hosts
插入命令:i
# sed -r '2i\1111111111111' /etc/hosts # sed -r '2i111111111\ > 2222222222\ > 3333333333' /etc/hosts
修改命令:c
# sed -r '2c\1111111111111' /etc/hosts # sed -r '2c\111111111111\ > 22222222222\ > 33333333333' /etc/hosts
获取下一行命令:n
# sed -r '/eastern/{ n; d }' datafile # sed -r '/eastern/{ n; s/AM/Archile/ }' datafile
暂存合区用命令:h H g G
# sed -r '1h;$G' /etc/hosts # sed -r '1{h;d};$G' /etc/hosts # sed -r '1h; 2,$g' /etc/hosts # sed -r '1h; 2,3H; $G' /etc/hosts
暂存空间和模式空间互换命令:x
# sed -r '4h; 5x; 6G' /etc/hosts
反向选择:!
# sed -r '3d' /etc/hosts # sed -r '3!d' /etc/hosts
多重编辑选项:e
# sed -r -e '1,3d' -e 's/Hemenway/Jones/' datafile # sed -r '1,3d; s/Hemenway/Jones/' datafile # sed -r '2s/WE/UPLOOKING/g; 2s/Gray/YYY/g' datafile # sed -r '2{s/WE/UPLOOKING/g; s/Gray/YYY/g}' datafile
六、sed常见操作:
删除配置文件中#号注释行及空行:
# sed -ri '/^[ \t]*#/d; /^[ \t]*$/d' /etc/vsftpd/vsftpd.conf # sed -ri '/^[ \t]*#|^[ \t]*$/d' /etc/vsftpd/vsftpd.conf # sed -ri '/^[ \t]*($|#)/d' /etc/vsftpd/vsftpd.conf
修改文件:
# sed -ri '$a\chroot_local_user=YES' /etc/vsftpd/vsftpd.conf # sed -ri '/^SELINUX=/cSELINUX=disabled' /etc/selinux/config # sed -ri '/UseDNS/cUseDNS no' /etc/ssh/sshd_config # sed -ri '/GSSAPIAuthentication/cGSSAPIAuthentication no' /etc/ssh/sshd_config
给文件行添加注释:
# sed -r '2,6s/^/#/' a.txt # sed -r '2,6s/(.*)/#\1/' a.txt # sed -r '2,6s/.*/#&/' a.txt &匹配前面查找的内容
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。