cygwin 中是否有一个命令行工具可以将文件复制到剪贴板?

cygwin 中是否有一个命令行工具可以将文件复制到剪贴板?

我想做这样的事:

  • 在命令行上,将文件复制到 Windows 剪贴板
  • 在 Windows 资源管理器中,将文件粘贴到当前位置

在 cygwin 或其他地方是否有一个简单的工具可以做到这一点?

答案1

尝试一下clipWindows 自带的实用程序。

CLIP

Description:
    Redirects output of command line tools to the Windows clipboard.
    This text output can then be pasted into other programs.

Parameter List:
    /?                  Displays this help message.

Examples:
    DIR | CLIP          Places a copy of the current directory
                        listing into the Windows clipboard.

    CLIP < README.TXT   Places a copy of the text from readme.txt
                        on to the Windows clipboard.

答案2

我正在使用这个工具https://github.com/roryyorke/picellif。这是一个 Windows 命令行工具。将它放入PATHCygwin 中。我实际上将它与下面的工具一起使用,winpty如下所示.bashrc

alias cf='winpty picellif'

答案3

使用 Cygwin:

user@computer ~$ echo "foo bar" |clip

user@computer ~$ cat /dev/clipboard
foo bar

相关内容