腳本內(nèi)容:
我們一直強(qiáng)調(diào)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計對于企業(yè)的重要性,如果您也覺得重要,那么就需要我們慎重對待,選擇一個安全靠譜的網(wǎng)站建設(shè)公司,企業(yè)網(wǎng)站我們建議是要么不做,要么就做好,讓網(wǎng)站能真正成為企業(yè)發(fā)展過程中的有力推手。專業(yè)網(wǎng)站建設(shè)公司不一定是大公司,創(chuàng)新互聯(lián)作為專業(yè)的網(wǎng)絡(luò)公司選擇我們就是放心。
[root@m01 scripts]# cat fenfa_sshkey.exp
[root@m01 scripts]# cat fenfa_sshkey.exp
#!/usr/bin/expect
if { $argc != 2 } {
send_user "usage: expect fenfa_sshkey.exp file host\n"
exit
}
#define var
set file [lindex $argv 0]
set host [lindex $argv 1]
set password "123456"
spawn ssh-copy-id -i $file " $host"
expect {
"yes/no" {send "yes\r";exp_continue}
"*password" {send "$password\r"}
}
expect eof
exit -onexit {
send_user "Oldboy say good bye to you!\n"
}
執(zhí)行腳本,報錯
[root@m01 scripts]# /bin/sh -x /server/scripts/fenfa_sshkey.exp
/server/scripts/fenfa_sshkey.exp: line 15: syntax error near unexpected token `}'
/server/scripts/fenfa_sshkey.exp: line 15: `}'
解決辦法:
就多了個空格而已,而已,而已