Shell 在工作中的应用

  1. scp ssh 自动输入密码,并执行命令

#!/usr/bin/expect -f

spawn scp 2.sh 172.16.32.23:/tmp

expect "*Password:"

send "123456\r"

expect eof


spawn ssh -t 172.16.32.23 '/tmp/2.sh'

expect "*Password:"

send "123456\r"

expect eof


你可能感兴趣的:(shell,工作应用)