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.
如果应用程序中发生任何异常,我的要求是在腻子中播放警报(播放声音),因此为此我尝试了以下方式
tail -f flex.log | grep "Exception" --color paplay alert.wav
但是即使在tail期间flex Log File中出现了Exception这个词,但它并没有播放声音。
如果上述命令有任何错误,请告诉我。
我使用 centOS 8 作为操作系统,脚本是 bash 。
这将找到所有带有异常的单词并将其替换为铃声字符,您的终端应该发出哔哔声/闪烁/您在终端铃声期间设置的任何内容。
tail -f flex.log | grep "Exception" | sed -e $'s/Exception/Exception\a/'
要查看所有行flex.log但仅在“例外”上响铃:
flex.log
tail -f flex.log | sed -e $'s/Exception/Exception\a/'