Is there a command/program for OS X that allows me to hook to a file and display its changes in realtime without re-opening it, much like "top" monitors system processes in realtime ?
Thank you
|
feedback
|
|
You can use | |||||||||||
feedback
|
|
Another alternative may be doing | |||
|
feedback
|
|
If you are doing this on file sync'd by dropbox the chances are it is creating a new file with a different inode so the tail -f command and the less +F command do not work since they are still referencing the old file handle they opened initially. I suggest trying
It feels hackish but at least every X seconds it will re run tail on the filename giving you the updated output regardless of whether or not the inodes change on the file. | |||
|
feedback
|