使用终端缩短 .txt 文件中的行
我有一个包含 98 行的 .txt 文件。我需要缩短每一行,以便每行只有前 14 个字符。我该怎么做呢?
I have a .txt file that has 98 lines. I need to shorten each of these lines so that I only have the first 14 characters in each line. How do I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是 Linux:
它的作用是获取原始文件每一行的前 14 个字符(
-14
是1-14
的快捷方式),并将它们通过管道输出到新文件。If Linux:
What this does is take the first 14 characters (
-14
is a shortcut for1-14
) of each line of the original file and pipe them out to the new file.看起来不错,可能会做你想做的事。
如果要保存结果,您需要将输出定向到另一个文件。
Looks good and might do what you want.
You will need to direct the output to another file, if you want to save the results.