shell指令碼登陸模板講解,shell指令碼模板

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.