使用终端缩短 .txt 文件中的行

发布于 2024-11-10 03:30:30 字数 59 浏览 0 评论 0原文

我有一个包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

阿楠 2024-11-17 03:30:30

如果是 Linux:

cut -c -14 myfile.txt > mycutfile.txt

它的作用是获取原始文件每一行的前 14 个字符(-141-14 的快捷方式),并将它们通过管道输出到新文件。

If Linux:

cut -c -14 myfile.txt > mycutfile.txt

What this does is take the first 14 characters (-14 is a shortcut for 1-14) of each line of the original file and pipe them out to the new file.

时光礼记 2024-11-17 03:30:30
colrm 15 < foo.txt

看起来不错,可能会做你想做的事。

如果要保存结果,您需要将输出定向到另一个文件。

colrm 15 < foo.txt

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文