scp filename user@ip_address:/location will copy a file from my local computer to a remote computer... However I need to copy a file from the remote computer back to the local computer.

Is there any way to specify to pull a certain file down from a remote computer via ssh?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

It's just the oposite way, like any copy/move command.

scp user@ip_address:/location/to/file /location

See also http://en.wikipedia.org/wiki/Secure_copy#How_it_works:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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