1 example for lftp

{{ score }}
  # lftp is a great utility that wraps multiple transports. It is hugely useful as a replacement
# for scp/rsync on servers that don't give you full ssh access.
#
# You can use it to quickly upload/download entire directory trees.

# Opens a CLI on the server where you can `ls`, `cd`, etc
lftp sftp://user@sub.domain.com
# The prompt is open. Download everything recursively with 20 threads (fast!)
lftp user@sub.domain.com:/a/folder/to/download> mirror --parallel=20
# Or, upload your local directory to this folder recursively with 20 threads
# The -R is "reverse"
lftp user@sub.domain.com:/a/folder/to/upload/to> cd /a/folder/to/download
lftp user@sub.domain.com:/a/folder/to/download> mirror --parallel=20