1. 打印指定行 sed ‘10’p –n 1.txt; sed‘1,4’p –n 1.txt; sed ‘5,$’p –n 1.txt;
2. 打印包含某个行字符串的行 sed –n ‘/root/’p 1.txt 可以使用^ . * $等特殊符号
3. –e可以实现多个任务同时打印 sed –e ‘/root’p –e ‘/body/’p –n 1.txt
4. 删除行 sed ‘/root/’d 1.txt ; sed ‘1d’ 1.txt; sed ‘1,10d’1.txt
5. 替换 sed ‘1,2s/ot/to/g’1.txt,其中s就是替换的意思,g为全局替换
6.