#Bypassing the ssh
spawn -noecho /usr/bin/ssh -o 'StrictHostKeyChecking=no' "$user\@$ip";
if { $argc == $total_arguments} {
set REMOTEDIR "$remote_dir";
spawn -noecho rsync -r $user\@$ip:$destination/* $remote_dir
expect "Password:"
}
以上是我将文件从远程机器复制到我的主目录的代码的一部分。但是在执行脚本时,它有时无法复制所有文件。失败的原因是什么以及如何验证它是否复制了所有文件?