On machine A I have the folder

/home/a/

On machine B I have the folder

/home/b/

I wish transfer all files, directories and sub-directories of /home/a in /home/b with sftp On machine A I tried the commands:

sftp fibon82@machineB.com
put /home/a/* /home/b/

but it doesn't work, i get the error message: "skipping non-regular file /home/a/a1"... [a1 is a sub-directory of a]
How could I modify the put instruction?

Thanks! :)

EDIT:

I solved using scp:

scp -r /home/a/ fibon82@machineB.com:/home/b/
link|improve this question
put -r would have worked too. – WakiMiko Feb 8 at 16:07
Ok but how could I know that for "put command" the option -r is available? If I look here only the flag -P is described... The same in the manual Thanks! :) – fibon82 Feb 9 at 0:37
You should post that as an answer instead. – N.N. Mar 7 at 20:20
feedback

migrated from stackoverflow.com Feb 8 at 13:57

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 1 down vote accepted

Although not strictly equivalent to sftp, rsync is a very powerful alternative for scp and sftp, especially when updating the copies from machine A to machine B, as it doesn't copy the files that haven't been altered; it's also able to remove files from machine B that have been deleted from machine A (only when it's told to of course).

In your case, the syntax would be

rsync -zrp /home/a/ user@remote.host.com:/home/b/

The -r option is for recursively copying files, -z enables compression during the transfer, and -p preserves the file permissions (file creation, edit, etc.) when copying, which is something that scp doesn't do AFAIK. Many more options are possible; as usual, read the man pages.

link|improve this answer
Ah thank you! :) A new thing that I learned! – fibon82 Feb 9 at 0:08
@fibon82: You're welcome :) – Karolos Feb 9 at 6:47
feedback

scp is the Linux de facto for transferring files over SSH. In your case you would want to use the recursive switch, e.g.:

scp -r /home/a/ user@remote.host.com:/home/b/
link|improve this answer
1  
sftp and scp are actually different protocols, both based on ssh. – paradroid Feb 8 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.