自动登录ssh脚本

master
JimZhang 1 year ago
parent 6a39310096
commit 02069b43ff

@ -29,3 +29,33 @@ memray run --live -m module.file
pip install py-spy
py-spy top --pid ${pid}
```
### 批量设置ssh自动登录
```bash
#!/bin/bash
# FileName: auto-ssh-login.sh
# Revision: 1.0
# Date: 2020-03-25
# Author: baige
# Description: the script for auto-ssh-login
while read host;do
ip=`echo $host | cut -d " " -f1`
username=`echo $host | cut -d " " -f2`
password=`echo $host | cut -d " " -f3`
expect <<EOF
spawn ssh-copy-id -i $username@$ip
expect {
"yes/no" {send "yes\n";exp_continue}
"password" {send "$password\n"}
}
expect eof
EOF
done < host.txt
# host.txt 格式 如下
## host1 username1 password1
## host2 username2 password2
```
Loading…
Cancel
Save