期望脚本中的 EOF 生成 sftp

EOF in expect script spawning sftp

我有一个脚本可以将文件从 linux 服务器传输到 windows 服务器。我想记录与传输相关的数据,但 EOF 在 HEREDOC 构造中给我错误。谁能告诉我前进的方向。

我的脚本是:

#!/usr/bin/expect
spawn sftp XXXX@XXXXXX <<EOF>> log.file
expect "password:"
send "ABC\n"
expect "sftp>"
send "cd /FIRST\r"
expect "sftp>"
send "lcd /home\r"
expect "sftp>"
send "mput /home/*First*\r"
send "bye\r"
interact

改用 shell 脚本并调用 expect 传递给它“-”以使其从标准输入中读取,这将是 HEREDOC(即 <

#!/bin/sh

/usr/bin/expect - <<EOF >> /tmp/log
spawn sftp XXXX@XXXXXX
expect "password:"
send "ABC\n"
expect "sftp>"
send "cd /FIRST\r"
expect "sftp>"
send "lcd /home\r"
expect "sftp>"
send "mput /home/*First*\r"
send "bye\r"
EOF

或者

#!/usr/bin/expect
log_file -a log.file
spawn sftp XXXX@XXXXXX
# ... the rest is all the same.

如果您实际上并未(作为人类)与 sftp 进程进行交互,则可以将其用作最后一行

expect eof