标签: linux
如何使用tail减小文件的大小?
我只需要文件的最后1000行。我需要修剪的文件名保持不变。
答案 0 :(得分:9)
tail -1000 file.txt
制作新文件
tail -1000 file.txt > newfile.txt