echo "Log files not updated recently" | mailx -s "Negative Alert" -c "[email protected]" -b "[email protected]"
このエラーメッセージが表示されます。
あなたが与えたフラグはメッセージを送信するものではないので意味がありません。
私はAIXマシンでこのスクリプトを実行しています。この問題を解決するのに役立ちます
ベストアンサー1
それが問題だ-b
、ちょうど捨てなさい。
echo "Log files not updated recently" | mailx -s "Negative Alert" -c "[email protected]" "[email protected]"