分隔多页 ascii 文件
我有一个多页 ascii 文件,我需要能够将该文件分成单页 ascii 文件。
每页末尾应插入分页符。我最初的想法是读取到分页符,输出到文件,但是如何让它读取到分页符,然后继续从该分页符开始读取到下一个分页符?或者还有另一种更简单的方法吗?
I have a multi-page ascii file, and I need to be able to separate this file into single page ascii files.
At the end of each page should be a page break inserted. My original thoughts are to read up to a page break, output to file, but then how would I make it read to a page break and then continue to start over reading from that page break to the next? Or is there another, easier way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
csplit
允许您通过正则表达式分割文件。csplit
allows you to split a file by regex.