使用sed输出文件的指定行
sed ‘/pattern/!p’ infile //匹配pattern的行不输出
sed -n ‘1,2p’ infile //print line 1 to 2
sed -n ‘2,$p’ file //print line 2 to end of line
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。
- 上一篇: php运行原理
- 下一篇: python for 文件指定行读写操作
sed ‘/pattern/!p’ infile //匹配pattern的行不输出
sed -n ‘1,2p’ infile //print line 1 to 2
sed -n ‘2,$p’ file //print line 2 to end of line