shell习题171114-自动增加公钥

写一个shell脚本,当我们执行时,提示要输入对方的ip和root密码,然后可以自动把本机的公钥增加到对方机器上,从而实现密钥认证。

答案明日公布。

习题171113-域名到期提醒==参考答案==

#!/bin/bash

t1=`date +%s`

is_install_whois()

{

    which whois >/dev/null 2>/dev/null

    if [ $? -ne 0 ]

    then

        yum install -y jwhois

    fi

}

notify()

{

    e_d=`whois $1|grep "Expiry Date"|awk "{print $4}"|cut -d "T" -f 1`

    e_t=`date -d "$e_d" +%s`

    n=`echo "86400*7"|bc`

    e_t1=$[$e_t-$n]

    if [ $t1 -ge $e_t1 ] && [ $t1 -lt $e_t ]

    then

        /usr/local/sbin/mail2.py aming_test@163.com "Domain $1 will be expire." "Domain $1 expire date is $e_d."

    fi

}

is_install_whois

notify aminglinux.com

- END -

出品 | 阿铭linux

shell习题171114-自动增加公钥

加私人微信:81677956  获取免费学习资料

shell习题171114-自动增加公钥

提升自己,才是世界上最稳健的投资

shell习题171114-自动增加公钥