您好,我的任务是查找域过期的剩余天数。输出应该是剩余天数(整数)所以我尝试过这种方式我可以将域作为参数传递
例如:- 我的域 - www.xplosa.com
脚本文件:- ./domain-exp.sh
执行方法:- ./domain-exp.sh www.xplosa.com
#!/bin/bash
target=$1
# Get the expiration date
expdate="$(whois $1 | egrep -i 'Registrar Registration Expiration Date:' | head -1)"
# Turn it into seconds (easier to compute with)
expdate=("$expdate" +%s)
# Get the current date in seconds
curdate=$(date +%s)
# Print the difference in days
echo ($expdate - $curdate) / 86400
这不是我期望的输出,请帮助我提前解决这个问题。