本文介绍了将文件从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 charmThanks
推荐答案
如果你有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
更多阅读
这篇关于将文件从Unix复制到Windows剪贴板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!