Shell
小黑x32
这个作者很懒,什么都没留下…
展开
-
Shell 批量免密脚本
继上一篇expect ssh登陆,发现密码错误后关闭连接https://blog.csdn.net/qq_41323538/article/details/120547061之后,感觉可以利用 expect 来做一个批量免密脚本.上脚本#!/bin/bash######################### 批量免密脚本 #########################function info() { echo -e "\033[33mINFO \033[0m: $1"}f..原创 2021-10-15 13:21:50 · 415 阅读 · 1 评论 -
expect ssh登陆,发现密码错误后关闭连接
#!/bin/bashtarget="192.168.1.100"password="123456"/bin/expect -c " set timeout 30 spawn ssh $target expect { \"*yes/no*\" { send \"yes\r\"; exp_continue } \"*password*\" { send \"$password\r\" } } expect { .原创 2021-09-29 13:48:25 · 1090 阅读 · 0 评论