如果我有一个文件 test.txt:
example 1 content 2013-3-8:
hello java
example 2 content 2013-4-9:
hello c
如何使用 awk 或 sed 将 test.txt 分隔为两个文件
测试1
hello java
测试2
hello c
我使用下面的命令:
awk '/example/{i++}{print > "test"i}' test.txt
但它将保留第一行(例如 xxx),我可以在 awk 的打印中添加一些片段以删除第一行吗?