shell指令碼登陸模板講解,shell指令碼模板
編寫記事本,寫完後把檔案尾碼改成sh
#!/usr/bin/expect
#登陸 ssh
#通過 ssh 伺服器 spawn 與 expect 配合使用 以及send 配合使用
spawn ssh root@ip
#期望值
expect "password:"
#輸入密碼 點擊斷行符號鍵\n
send "tktktktkt\n"
#期望 iZhp3gz74iw8bsizduk8mdZ
expect "iZhp3gz74iw8bsizduk8mdZ:"
#輸入 ls /
send "ls /\n"
#期望
expect "iZhp3gz74iw8bsizduk8mdZ:"
#輸入
send "cd /usr/local\n"
# 期望 /home
expect "/usr/local"
# 輸入 ls
send "tar -xvf jdk1.8.0_151.tar\n"
#期望
expect "/usr/local"
#向檔案裡面輸入內容
send "cd /etc\n"
#期望 etc
expect "/etc"
#向 profile 裡面輸入配置環境
send " echo export JAVA_HOME=/usr/local/jdk1.8.0_151 >> profile\n"
#期望 etc
expect "/etc"
#向 profile 裡面輸入配置環境
send " echo export CLASSPATH=.:/usr/local/jdk1.8.0_151/lib/dt.jar:/usr/local/jdk1.8.0_151/lib/tools.jar >> profile\n"
#期望 etc
expect "/etc"
#向 profile 裡面輸入配置環境
send " echo export PATH=/usr/local/jdk1.8.0_151/bin:\$PATH >> profile\n"
#輸入系統重新載入設定檔
#期望 etc
expect "/etc"
#系統重新載入設定檔
send "source profile\n"
#輸入 java -version 檢測 jdk環境
#期望 etc
expect "/etc"
#系統重新載入設定檔
send "java -version\n"
#留在伺服器
interact