如何使用Shell脚本将文件的内容拆分为两个不同的文件
我想将一个文件分成两部分
我想使用 shell 脚本将一个文件分成两个不同的文件。
I want to split a file into two parts
I want to split a single file into two different files using shell script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 linux
split
命令,通过行split -l;
或按大小split -b<文件名>
。例如:
split -l100 a.txt
会将每 100 行拆分为单独的文件。这是一个链接 您可以看到更多示例和所有详细信息。
You can use linux
split
command, either by linessplit -l<num_of_line> <file_name>
or by sizesplit -b<size><K|M|G> <file_name>
.For example:
split -l100 a.txt
will split each 100 lines into separate files.Here is a link you can see more examples and all details.