我有一个文件,我想保存一些其他服务器说abc.com。 如果此操作由于某些原因(权限被拒绝或其他任何原因)而失败,则当前它会以静默方式失败。 但我希望,在这种情况下,它会向Ruhi @ .abc.com发送电子邮件。
如何实现此功能并测试方案。
代码摘录:
sed -e abc.txt > /net/abc.com/test/abc.txt
#Sending email
if [ -f /net/abc.com/test/abc.txt ]; then
echo "content of abc.txt saved to server" | mail -s "Content of abc" dave@klm.com
else
echo "File does not exist"
fi