Log Files で例外が発生した場合に備えて、サウンドを鳴らしたい。
私はbashスクリプトを使用しています。
残念ながら、tail を sed と組み合わせて使用すると機能しません。
以下のコマンドを試して、ここに投稿しました。
tail -f mylogs.log | grep "Exception" | sed -e $'s/Exception/Exception\a/'
tail -f mylogs.log | sed -e $'s/Exception/Exception\a/'
tail -f mylogs.log | grep "Exception" | sed -e $'s/Exception/Exception\a/'