开发者

Continually output file content to console?

开发者 https://www.devze.com 2023-01-06 13:25 出处:网络
Quick question, hopefully... I\'m building an application with a fairly extensive log file. I\'d like the ability at any time to monitor what a specific instance of my application is doing. I could op

Quick question, hopefully... I'm building an application with a fairly extensive log file. I'd like the ability at any time to monitor what a specific instance of my application is doing. I could open and close the log file a bunch of times, but its kind of a pain. Optimally, as lines are written to the log file, they would be written to the console as well. So I'm hoping something along the lines of "cat" exists that 开发者_Python百科will actually block and wait for more content to be available in the input file. Anyone have any ideas?


tail -f logfile

this will keep it open and 'follow' the new output.


tail -f yourlogfile


tail -f logfile


An alternate answer for variety: If you're already looking at the log file with less, press capital F to get it to do the same thing tail -f does: wait for new content to be appended and show it.


Look at tee utility

http://www.devdaily.com/blog/post/linux-unix/use-unix-linux-tee-command-send-output-two-or-more-directions-a

0

精彩评论

暂无评论...
验证码 换一张
取 消