我有一个小问题,我正在运行和cron任务每5分钟看一下文本链并替换它什么都没有.. 为了优化某些东西,我想在我的cronstrask中添加一个新功能:如果它替换了某些内容,请给我发电子邮件...如果crontask没有找到链条,则无需发送邮件。我不知道该怎么做,也许你可以帮助我。 这是我目前的cron任务:
find /home -type f | xargs sed -i 's$chain if would like to era$ $g'
提前致谢
答案 0 :(得分:0)
这是我在其他人的帮助下做的一个例子。 它可能会帮助其他人
#!/bin/bash
grep -r -q 'stringtoreplace' /home/ #Find the string in all files on my home
if [ $? == 0 ] #if the last result fit then
then
echo "At the following time : " $(date +%H:%M:%S) | mail -s "[Serveur Leaked] Bad iframe has been found " my@mail #we send a mail with the date
find /home -type f | xargs sed -i 's$stringtoreplace$ $g' #we replace the string with a whitespace
else
exit 1
fi
exit 0