是否有任何应用程序/编辑器可以跟踪文件中发生的更改并显示它们?
我知道有 tail
可以跟踪是否有任何内容被附加到文件中。
我也知道可以使用 vim :w !diff % -
是否有类似的东西可以跟踪文本文件中是否有任何修改并将其打印出来。
澄清一下,类似于 tail 的东西,但文件中的更改可能在任何地方。 (而不是我每次都必须运行 vim。)
I know there is tail
which tracks if anything has been appended to a file.
I also know its possible to do using vim :w !diff % -
Is there something similar which tracks if anything is modified in a text file and prints it out.
To clarify is the something similar to tail but the change within the file might be anywhere. (Rather than me having to run vim everytime.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试
watch -d cat file
。请参阅
男士手表
了解更多信息。you could try
watch -d cat file
.See
man watch
for more information.tail -f
应该是你所需要的,还是我错了?编辑:
从头开始,您想要一个针对变化的解决方案,而不仅仅是通过附加。
可悲的是我刚刚发现我无法删除自己的帖子......
tail -f
should be all you need, or am I mistaken?EDIT:
Scratch that, you want a solution for things changing but not just through appending.
Sadly I just found out I cannot delete my own posting...