文章列表
自动登录expect脚本,login.exp
#!/usr/bin/expect -f
#auto ssh login
set timeout 30
spawn ssh -p 22 -l root 100.100.100.100
expect {
"yes/no" {send "yes\r"}
"password:" {send "daydayup\r"}
}
interact
文本替换shell
#!/bin/bash
for i in `find $1 -name &q ...