I'm using Windows XP. I'm connecting to a UNIX box using putty SHH(ksh).

Now I want to copy a text file present in remote host to my local system.

How can I do that?

Thank you!

link|improve this question
1  
Try superuser.com – jlafay Sep 27 '10 at 13:23
feedback

migrated from stackoverflow.com Sep 27 '10 at 15:36

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

5 Answers

Download psftp from the putty site.

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

link|improve this answer
feedback

SSH file transfer is usually with scp. Putty should come with the tool pscp. You can use this to copy in either direction.

link|improve this answer
feedback

This is forum is a place for programming related questions.

anyways, try this link.

link|improve this answer
feedback

I use Winscp. http://winscp.net/eng/index.php

link|improve this answer
feedback

not sure why nobody has pointed this out. But if you want to FTP from A to B, and B to A, you'd need to put an FTP server on each computer. that's easy enough..

however.. another thing you can do.. is not as simple.. and perhaps (my?) terminology gets mirky here.. but if you only want to initiate the connection from the end where the server is, then there' a way with SSH, to do a reverse connection. Where instead of client initiating to server. You have the server initiating the connection , to a listening process on the other computer. There is quite a bit online about making a reverse connection with SSH. I think you can set it up as a socks proxy and have any general type of server like FTP, use it over a reverse connection. I did something like it once. at least that's at best a general idea! ssh tunnel reverse connection.

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.