您好,登錄后才能下訂單哦!
今天小編給大家分享一下shell腳本自動(dòng)輸入用戶名和密碼如何實(shí)現(xiàn)的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
shell腳本中,scp和ssh連接時(shí),自動(dòng)輸入用戶名和密碼。
例:
#!/bin/bash remoteIp=IP remoteUser=用戶名 remotePw=密碼 function download(){ remoteFile=$1 localDir=$2 expect << EOF set timeout 1200; spawn scp -r -p $remoteUser@$remoteIp:"$remoteFile" "$localDir" expect{ "*yes/no*" {send "yes\n";exp_continue} "*Permission denied*" {exit 1} "*password*" {send "$remotePw\n";exp_continue} "*Killed by signal 1" {exit 1} } EOF } fucntion remoteCmd(){ cmd=$1 expect << EOF set timeout 1200; spawn ssh $remoteUser@$remoteIp expect{ "*yes/no*" {send "yes\n";exp_continue} "*Permission denied*" {exit 1} "*password*" {send "$remotePw\n";exp_continue} "*\$ " {send "\n"} } expect "*\$ " {send "$cmd\n"} expect "*\$ " {send "exit\n"} EOF } remoteCmd "ls -l"
以上就是“shell腳本自動(dòng)輸入用戶名和密碼如何實(shí)現(xiàn)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。