Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何仅使用命令行使用 lftp 下载和删除远程文件。
使用 bash 也可以。
标志和完整的命令行是什么?我能想到的只是镜像命令,但这会将文件留在远程服务器上。
终于想通了...使用带有镜像的标志“--Remove-source-files”,一切都很好。
像这样:
lftp sftp://${username}@${host} -u ${username},${password} -e "mirror --Remove-source-files --verbose ${remote_dir} ${local_dir}; bye"