私は監視スクリプトを作成しようとしており、特別なイベントの場合には指定された人に連絡するために、最初のegrep
コードはうまくいきましたが、grepがwhileループで動作しない
while true; do
tail -f /Testing/script/errors | egrep -o --line-buffer "Timeout" >> wch.txt;
cat /Testing/script/contacts.txt|egrep --line-buffer "FB" | cut -f2 -d ":" >> mail.txt;
sleep 5
done
contact.txt:
FB:[email protected] グーグル:[email protected]
以下のように私に言ったとおりに動作しませんでした。 –
true true do tail -f/Testing/script/errors | egrep -o --line-buffer "タイムアウト" >> wch.txt; grep -line-buffered 'FB' /Testing/script/contacts.txt | "-f2 -d": ">> mail.txt sleep 5 done –
最初のgrepはうまくいきましたが、2番目のgrepはまだ動作していないかもしれません。 –