2

知道我是否可以使用 unix 命令将文本从 unix 中的文件复制到剪贴板?

我不能使用 xclip 和 xsel,因为我的公司不允许我安装 utils。

因此我想知道是否有任何解决方法

如果有人需要我在这里所做的事情的背景:

我正在使用 excel 宏启动 putty,然后使用 excel 宏向 putty 发送命令。此过程的一部分要求我将文本或某些文本复制到剪贴板并将其粘贴到我的 Excel 工作表中的活动单元格中。

4

1 回答 1

2

It is unlikely that xclip or xsel would be useful here, unless you actually start an X application from PuTTY.

If your excel macros allow the capture of any command output, you could use Plink, the cli tool which is included in a full PuTTY installation. You still need to address any issues with remote access (creating and managing public/private keypairs for authentication.)

Check the PuTTY docs for more information.

于 2012-08-07T12:02:15.957 回答