英文:
How would I read a growing file in Go?
问题
就像命令tail -f <一个增长的文件>
一样吗?
每当我读取一个增长的文件时,总是遇到EOF错误,然后退出。
英文:
Just like the command tail -f <a growing file>
?
whenever I read a growing file, it always encounter the EOF error, and then quit.
答案1
得分: 6
我还没有进行过太多的实验,但有一个 GitHub 仓库旨在在 Go 中模拟 tail
功能:https://github.com/ActiveState/tail
英文:
I haven't experimented with it much, but there is a github repository that aims to emulate <code>tail</code> functionality in Go: https://github.com/ActiveState/tail
答案2
得分: 0
在Linux上以C语言编程的情况下,找到答案,然后使用相同或类似的选项来调用等效的"open"系统调用。
英文:
Find the answer as if you're programming in C on Linux, then use the same/analogous options to the equivalent 'open' system call.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论