feat(脚本): 清理history

This commit is contained in:
mack-a
2024-07-01 16:11:41 +08:00
commit 20ad369717
31 changed files with 19491 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
touch /var/local/mail.log
currentIP=$(curl -s -4 whatismyip.akamai.com)
historyIP=$(cat /var/local/mail.log)
if [[ ${currentIP} = ${historyIP} ]];then
echo '不发送邮件'
echo '不发送邮件' >> /tmp/mail.log
exit
fi
echo ${currentIP}|mail -s ${currentIP} xxx@163.com
echo ${currentIP} > /var/local/mail.log