将文件内容直接分类到 cygwin 终端的剪贴板中
Cat the contents of a file directly into the clipboard in cygwin terminal
我想 cat 将文本文件的内容直接放入剪贴板,而不是在 Cygwin 的 bash 终端的屏幕上显示内容。
即
cat textfile.txt > /dev/clip
我发现一个简单的方法是直接调用 Windows 剪辑程序:
即
clip < textfile.txt
现在可以使用鼠标右键单击或 ctrl+v 粘贴文件中的文本。
putclip 和 getclip
<command> | putclip
或
putclip < <filename>
类似于getclip
它们在 cygutils-extra
包中
$ cygcheck -p bin/putclip
Found 6 matches for bin/putclip
...
cygutils-extra-1.4.15-2 - cygutils-extra: A collection of simple utilities (other tools
) (installed binaries and support files)
cygutils-extra-1.4.16-1 - cygutils-extra: A collection of simple utilities (other tools
)
cygutils-extra-1.4.16-2 - cygutils-extra: A collection of simple utilities (other tools
)
我想 cat 将文本文件的内容直接放入剪贴板,而不是在 Cygwin 的 bash 终端的屏幕上显示内容。
即
cat textfile.txt > /dev/clip
我发现一个简单的方法是直接调用 Windows 剪辑程序:
即
clip < textfile.txt
现在可以使用鼠标右键单击或 ctrl+v 粘贴文件中的文本。
putclip 和 getclip
<command> | putclip
或
putclip < <filename>
类似于getclip
它们在 cygutils-extra
包中
$ cygcheck -p bin/putclip
Found 6 matches for bin/putclip
...
cygutils-extra-1.4.15-2 - cygutils-extra: A collection of simple utilities (other tools
) (installed binaries and support files)
cygutils-extra-1.4.16-1 - cygutils-extra: A collection of simple utilities (other tools
)
cygutils-extra-1.4.16-2 - cygutils-extra: A collection of simple utilities (other tools
)