如何在多尾中将 \n 显示为新行?

如何在多尾中将 \n 显示为新行?

我在编程时使用 multitail 来监视日志。我真的很喜欢这个工具。但是,很难使用它来查看 php 错误日志中的对象输出,因为\n不处理换行符。有谁知道如何实现这一目标?

答案1

结合尾巴的答案:

tail -f file | sed 's/\\n/\n/g'

在 multitail 中使用 -l 选项:

multitail -l "tail -f file | sed 's/\\\n/\\n/g'"

注意:\n 上的附加转义符

额外提示:(
将为所有文件着色并将它们合并到一个多尾窗口中):

multitail -C fileUNfiltered -L "tail -f file | sed 's/\\\n/\\n/g'"

相关内容