我可以使用 TERA TERM "scpsend" 命令对单个文件进行 SCP,但是当我尝试对整个目录进行 SCP 时收到错误消息“打开文件错误”。
我知道 scpsend 命令仅用于发送单个文件。如何修改它,以便我可以 SCP 整个目录而不是一个文件?
SOURFILE = 'E:\movies'
DESTFILE = '/home/Angel/test'
;; Send a file.
scpsend SOURFILE DESTFILE
;; Confirm a scp process.
do
mpause 5000
sprintf2 str 'ps -ef |grep -v grep |grep -c scp'
sendln str
waitln '0' '1'
loop while result != 1
;; Do next macro after finishing the file sending.
sendln 'echo SCP finish'
;; Exit this macro script.
end