我想做这样的事:
- 在命令行上,将文件复制到 Windows 剪贴板
- 在 Windows 资源管理器中,将文件粘贴到当前位置
在 cygwin 或其他地方是否有一个简单的工具可以做到这一点?
答案1
尝试一下clip
Windows 自带的实用程序。
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 命令行工具。将它放入PATH
Cygwin 中。我实际上将它与下面的工具一起使用,winpty
如下所示.bashrc
alias cf='winpty picellif'
答案3
使用 Cygwin:
user@computer ~$ echo "foo bar" |clip
user@computer ~$ cat /dev/clipboard
foo bar