I issued an command on a local machine

scp -r download/ tim@foo.xxx.xxx.xxx

Then I checked at the remote foo.xxx.xxx.xxx and found under my home directory, there is nothing. Did scp transfer something? If yes, where are they?

Thanks!

link|improve this question

73% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You're missing a colon at the end, it should be scp -r download/ tim@foo.xxx.xxx.xxx:. The colon shows you're transfering to a remote host and not just a local file called tim@foo.xxx.xxx.xxx.

link|improve this answer
1  
... so you should find a copy of all your files in a local directory named 'tim@foo.xxx.xxx.xxx' :) – pjz Jun 14 '10 at 20:03
feedback

Your Answer

 
or
required, but never shown

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