期待bash脚本里面的脚本

时间:2014-07-29 00:21:28

标签: linux bash expect scp

我真的很难过! 我不想使用RSA,所以请坚持下去。

#!/bin/bash

echo "Enter the server password" 
read password 
cd /home/mike/ 

# this is included the code below -> 
/usr/bin/expect << EOD
set timeout -1
spawn scp file.txt server.com:/home
expect {
  timeout            { send_user "TIME OUT\n"; exit 1 }
  "*assword: "
}
send "$password\r"
expect {
  "s password: " { send_user "\nIncorrect Password. Login Failed.\n"; exit 1 }
  "100%"
}
sleep 1
send "exit\r"
expect eof

这有效,file.txt会传输到服务器,但我收到此警告信息 - &gt;

" line 44: warning: here-document at line 22 delimited by end-of-file (wanted `EOD')"

当我在'expect eof'之后添加EOD时,它会给我这个错误 - &gt;

send: spawn id exp4 not open
    while executing
"send "exit\r"

任何帮助将不胜感激。 我再次说我不能使用pubkey auth所以请不要这么做。

2 个答案:

答案 0 :(得分:4)

替换你的最后一行:

expect eof

使用:

EOD

我不再受到投诉了。请注意,您的EOD代码(在初始/usr/bin/expect行中定义的代码)之前不能有任何标签(也可能是空格?)。

答案 1 :(得分:2)

您可以使用expect通过scp或sftp将文件复制到远程主机或从远程主机复制文件,而不是尝试使用curl编写脚本,并将身份验证凭据传递给curl命令,如此:

curl sftp://remotehost.domain.com/path/to/remote/file --user username:password -o /path/to/local/file