Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 用于处理大文件的 Linux 文本编辑器
我有一个超过 200,000 行的日志文件。我怎样才能看到从 4500 到 5000 的行。我不确定 vi 编辑器会打开这么大的文件。请帮忙
vi可以打开这样的文件。这就是制作vi如此出色的编辑器的原因。但是你可以显示你的文件head -n 5000 hugefile.txt | tail -n 500
vi
head -n 5000 hugefile.txt | tail -n 500
sed -n '4500,5000{p}' log.file
然后您可以将其通过管道传输到 less 或 > 到新文件。