Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑以下命令:
elinks -dump file.html
它将打印文件,格式为纯文本(没有 HTML 标签)。
file.html 会不断更新,我想像这样通过“tail -f”运行它:
tail -f file.html | elinks -dump
但是它不起作用。有任何想法吗?
tail -f仅打印新添加到文件末尾的行。
tail -f
如果您想在某些间隔检查命令的输出,watch可以这样做:
watch
watch elinks -dump file.html