unix命令截断文件内容

发布于 2024-08-23 14:52:02 字数 58 浏览 3 评论 0原文

有人可以帮助我使用 unix 命令来截断目录中文件的内容。我在 Windows 中使用 Cygwin。

can someone help me with unix command to truncate the contents of the files in the directory. I am using Cygwin in windows.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

‘画卷フ 2024-08-30 14:52:02
for file in *
do
  >$file
done
for file in *
do
  >$file
done
早茶月光 2024-08-30 14:52:02

只是从任何地方重定向:

> somefile.txt

Just redirect from nowhere:

> somefile.txt
君勿笑 2024-08-30 14:52:02

如果您想截断文件以保留文件的最后 n 行,您可以执行类似的操作(本例中为 500 行)

mv file file.tmp && tail -n 500 file.tmp > file && rm file.tmp

If you want to truncate a file to keep the n last lines of a file, you can do something like (500 lines in this example)

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