将文件从Unix复制到Windows剪贴板

问题描述:

我想使用SSH将大型文件从Unix服务器复制到Windows剪贴板。

如何实现?

I want to copy a large file from a Unix server to the Windows clipboard using SSH.
How can this be done?

我不能在服务器上安装任何第三方应用程序

我尝试了各种选项,例如%y + 但是没有一个为我工作。

I can't install any third party application on the server
I tried various options like %y+ But none of them working for me.

更新:

最后我使用scp在windows cygwin和它工作像charm
感谢

Finally i used scp on windows cygwin and it worked like charm Thanks

如果你有PuTTY(或任何Windows SSH客户端)只是超级复制它:

If you have PuTTY (or any Windows SSH client) just super copy it:

scp username@linuxMachineAddress<linux directory path> C:\Documents\filename.extension

例如:

pscp firdooze@192.160.1.233:/home/firdooze/helloWorld.txt C:\Documents\helloWorld.txt

更多阅读此处