Web implementation of “tail -f filename”?

后端 未结 4 558
别跟我提以往
别跟我提以往 2020-12-31 14:49

I have a log file and want to create a webpage (possibly Python but not strictly) that will work much like unix \"tail -f filename\" command works (show new log lines when t

4条回答
  •  青春惊慌失措
    2020-12-31 15:31

    Tailon is a python webapp that, among other things, provides tail -f like functionality. In addition, wtee (a sister project of tailon) can make all its stdin viewable in the browser - its use is identical to the unix tee command: tail -f filename | wtee

提交回复
热议问题