gpt4 book ai didi

PHP 或 Linux Shell : Fastest way to reduce a text file that has more than 10 lines to only have the last 10 lines

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:40:44 24 4
gpt4 key购买 nike

我需要知道在 PHP 或 Linux Command Shell 中以最快的方式将超过 10 行的文本文件减少到只有最后 10 行。我想在此示例中使用 10 行。

谢谢:)

最佳答案

将文件减少到最后一行

tail -n 10 /path/to/file > /path/to/file.tmp && rm /path/to/file && mv /path/to/file.tmp /path/to/file

解释:

tail 输出文件的最后 n 行。> 将其写入文件。&& 用于链接命令。rm 删除一个文件。mv 重命名文件(或移动到不同的位置)。

关于PHP 或 Linux Shell : Fastest way to reduce a text file that has more than 10 lines to only have the last 10 lines,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11657509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com