Thread: FTP'ing Content
View Single Post
Old 2005-07-25, 04:50 PM   #9
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally Posted by cd34
if your provider's support FXP, you can do a server to server move which is much faster.

if you have ssh, you could use scp.
scp -rp directory user@1.2.3.4:newdirectory

if you have ssh, and rsync, you could use rsync.
rsync -ap --delete directory/ user@1.2.3.4:newdirectory/
Thanks to you I know actually understand the above and use it all the time but I'm surprised that you didn't add the verbose flag to the above so that she can watch what is going on.

That would be
rsync -apv --delete directory/ user@1.2.3.4:newdirectory
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote