摘要:
sed参考 #打印2-4行 [root@localhost ~]# sed -n '2,4p' test [root@localhost ~]# awk 'NR==2,NR==4{print}' test 打印单行 [root@localhost ~]# sed -n '4'p test [root 阅读全文
posted @ 2014-11-27 17:37
寒星12345678999
阅读(344)
评论(1)
推荐(0)