我正在使用
从远程服务器下载文件shell脚本中的spawn scp
命令,一旦完成下载,我想发送给另一个用户。 所以我需要一种方法来检测文件下载的时间。
答案 0 :(得分:0)
在下载完成之前,您的shell脚本将停在spawn scp
。因此,您可以添加其余命令以将文件传输到此语句下方,如下所示: -
spawn scp
# Check the downloaded file is available or not here
# if the file available
# just use ftp/ftps/scp command to transfer to your friend's server
# after a successful transfer exit with 0
# for failure exit with 1