1.创建文件10.pem
内容
hello
my file
world hello
i am a teacher
打印文件中的第一行(-n),p表示打印,-n表示不打印所有的行
[root@iZ2546h6zurZ test]# sed -n "1p" 10.pem
hello
2.执行多条编辑命令(-e)
[root@iZ2546h6zurZ test]# sed -n -e "1p" -e "/am/p" 10.pem
hello
i am a teacher
3.在行后追加内容(a\),i\在行前面添加内容
[root@iZ2546h6zurZ test]# sed "/teacher/ a\add content" 10.pem
hello
my file
world hello
i am a teacher
add content
4.打印出最后一行($)
[root@iZ2546h6zurZ test]# sed -n ‘$p‘ 10.pem
i am a teacher
5.输出不在2至3行的数据(!)取反
[root@iZ2546h6zurZ test]# sed -n ‘2,3!p‘ 10.pem
hello
i am a teacher