Bash 脚本、域到期日期和电子邮件发送

Bash script, domain expiration date with email sending

我正在尝试实施一个解决方案,以便在发现已超过到期日期的域后自动发送邮件。我对此很陌生,因此我设法了解了下面的代码,它显示了到期日期并发送了一封包含输出的电子邮件。

我正在寻找的帮助至少是如何将到期日期与当前日期进行比较并获得天数结果的线索。我将非常感谢任何帮助。

#!/bin/bash
DOM="onet.pl wp.pl"
for d in $DOM
do
  echo -n "$d - "
  whois $d | egrep -i 'Expiration|Expires on' | head -1
   whois $d | egrep -i 'Expiration|Expires on' | head -1 >> /tmp/domain.date
  echo ""
done
#[ -f /tmp/domain.date ] && mail -s 'Domain renew / expiration date' myemail@gmail.com < /tmp/domain.date || :

只需查看 date 命令,它拥有您需要的一切!

这是一个使用 date -d 解析日期的简单解决方案:

# Get the expiration date
expdate="$(whois $d | egrep -i 'Expiration|Expires on' | head -1)"
# Turn it into seconds (easier to compute with)
expdate="$(date -d"$expdate" +%s)"
# Get the current date in seconds
curdate="$(date +%s)"
# Print the difference in days
printf "Number of days to expiration : %s\n" "$(((expdate-curdate)/86400))"

祝你好运!