Question

I can't figure out how to download AND delete remote files using lftp using the command line only.

Using bash is also OK.

What are the flags and the full command line? All I can figure out is the mirror command, but that leaves files on the remote server.

Was it helpful?

Solution

Finally figured it out... use the flag "--Remove-source-files" with mirror and all is well.

Like this:

lftp sftp://${username}@${host} -u ${username},${password} -e "mirror --Remove-source-files --verbose ${remote_dir} ${local_dir}; bye"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top