shell 自動登入 上傳 下載

來源:互聯網
上載者:User

標籤:style   color   os   使用   ar   檔案   sp   div   on   

 

 

通過在shell指令碼中用expect實現遠程scp檔案:  使用expect前,需要先安裝兩個rpm包:# rpm -ihv CentOS/expect-5.43.0-5.1.i386.rpm
# rpm -ihv CentOS/expect-devel-5.43.0-5.1.i386.rpm 或者yum直接下載安裝yum install expect -y  指令碼如下:
#!/usr/bin/expect -f
set password 密碼
spawn scp 使用者名稱@目標機器ip:拷貝檔案的路徑 存放本地檔案的路徑
set timeout 300
expect "使用者名稱@目標機器ip‘s password:" //注意:這裡的“使用者名稱@目標機器ip” 跟上面的一致
set timeout 300
send "$password\r"
set timeout 300   //此處設定逾時時間,單位為秒,如果,拷貝檔案比較大並且多時,應該將這個值調大一些。
send "exit\r"expect eof附:scp參數
-r:拷貝目錄
-c:允許壓縮一個完整的例子
  
expect_scp.exp
========================================================================
  1. #!/usr/bin/expect -f
  2. #Author by kevin
  3. #date is 2011-11-14
  4. set password vcdog
  5. #download local host
  6. spawn scp -r [email protected].168.1.107:/root/dba_tool/test /root/DBA_TOOL/
  7. set timeout 3
  8. expect {
  9. "yes/no" {send "yes\r";exp_continue}
  10. }
  11. expect "[email protected]‘s password:"
  12. set timeout 3
  13. send "$password\r"        ----或者\n
  14. set timeout 300
  15. send "exit\r"
  16. expect eof
  17. #upload remote host
  18. spawn scp -r /root/DBA_TOOL/t.txt [email protected].168.1.107:/root/dba_tool/
  19. set timeout 3
  20. expect {
  21. "yes/no" {send "yes\r";exp_continue}
  22. }
  23. expect "[email protected]‘s password:"
  24. set timeout 3
  25. send "$password\r"
  26. set timeout 300
  27. send "exit\r"
  28. expect eof

==========================================================================測實驗證:
# chmod +x ./expect_scp.exp
# expect ./expect_scp.expspawn scp -r [email protected]:/root/dba_tool/test /root/DBA_TOOL/
[email protected]‘s password:
test                                                                                              100%   12     0.0KB/s   00:00   
spawn scp -r /root/DBA_TOOL/t.txt [email protected]:/root/dba_tool/
[email protected]‘s password:
t.txt                                                                                             100%  254     0.3KB/s   00:00 本機伺服器:(192.168.1.106)[[email protected] DBA_TOOL]# ll /root/DBA_TOOL/
total 64
-rw-r--r-- 1 root root   548 Nov 14 23:46 expect_scp.exp
-rw-r--r-- 1 root root    12 Nov 14 23:24 test
-rw-r--r-- 1 root root   254 Nov 14 23:24 t.txt

遠程伺服器:(192.168.1.107)
[[email protected] dba_tool]# ll /root/dba_tool/
total 60
-rw-r--r-- 1 root root    12 Nov 14 22:24 test
-rw-r--r-- 1 root root   254 Nov 14 22:47 t.txt

shell 自動登入 上傳 下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.