我有一个使用shell脚本进行作业监控的任务。如果在作业使用源文件的共享路径中没有找到文件,我必须触发警报电子邮件。我遇到了困难,有人能帮助我吗?
您尝试过这种方法吗?
if ! test -f /path/To/YourFile
then
mail -s "Source file not found" user@example.com < body_email.txt
fi