歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux管理 >> Linux服務

免輸入密碼,自動登錄遠程linux服務器

#!/usr/bin/expect
set timeout 30
spawn ssh -l dy 10.0.0.100
expect "password:"
send "mypassword\r"
interact

Copyright © Linux教程網 All Rights Reserved