LFTP: Difference between revisions
From Lsdf
Jump to navigationJump to search
(Created page with "= LFTP intro = LFTP Documentation can be found here http://lftp.yar.ru/ Install lftp using your distribution package management tool yum install lftp sudo apt-get ins...") |
mNo edit summary |
||
Line 25: | Line 25: | ||
lftp>mirror -c --use-pget-n=n rdir ldir |
lftp>mirror -c --use-pget-n=n rdir ldir |
||
== [[LFTP tests]] == |
== [[Performance measurments with LFTP | LFTP tests]] == |
Revision as of 20:12, 14 August 2016
LFTP intro
LFTP Documentation can be found here http://lftp.yar.ru/
Install lftp using your distribution package management tool
yum install lftp sudo apt-get install lftp
Log in with your archive account
lftp -u AAnnnn sftp://archive-sftp.lsdf.kit.edu Password:your secret password
Upload a local file(lfile) to a remote file(rfile):
lftp>put lfile -o rfile
Upload (mirror reverse -R) a local directory(ldir) to a remote directory(rdir) using n processes:
lftp>mirror -c -R -Pn ldir rdir
Download a remote directory using pget(nn streams) for every single file:
lftp>mirror -c --use-pget-n=n rdir ldir