标签:格式 linux grep 表达 linu 表达式 表示 使用 pre
sed先创建sed目录把passwd的文件拷贝到sed目录下改名为test.txt
# sed -n ‘1‘p test.txt
* 把-n参数去掉就是打印所有行出来也可以正则表达式打印
# sed -n ‘1,$‘p test.txt
* 指定区间打印1到3行
# sed -n ‘1,3‘p test.txt
* 打印某一个字符
# sed -n ‘/root/‘p test.txt
* 这种用法类似grep,在grep中使用的特殊字符(如^ $ . *等)同样能在sed使用
* 打印首行为root(^代表首行,开头带有root的打印出来)
# sed -n ‘/^root/‘p test.txt
* 打印末行bash($表示末行)
# sed -n ‘/bash$/‘p test.txt
* 打印某行大于三个o
# sed -n ‘/ooo*/‘p test.txt
标签:格式 linux grep 表达 linu 表达式 表示 使用 pre
原文地址:https://blog.51cto.com/14237749/2439390