gpt4 book ai didi

clipboard - 用于Windows的Linux子系统中的剪贴板中的管道

转载 作者:行者123 更新时间:2023-12-01 00:13:18 28 4
gpt4 key购买 nike

使用Windows的Linux子系统(LSW),可以使用clip.exe将数据复制到Windows剪贴板:

$ clip.exe /?

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.

有什么方法可以从剪贴板的传递 ?预期用途的示例:
$ paste.exe > foo.txt

$ paste.exe | tr , '\n' | clip.exe

最佳答案

解决方案

这会将Windows的剪贴板打印到stdout:

powershell.exe Get-Clipboard

示例

$ echo "hello" | clip.exe
$ powershell.exe Get-Clipboard
hello


$ date +%Y-%m-%d | clip.exe
$ powershell.exe Get-Clipboard
2019-06-13


$ alias paste.exe='powershell.exe Get-Clipboard'
$ echo "world" | clip.exe
$ paste.exe
world


资料来源: https://github.com/Microsoft/WSL/issues/1069#issuecomment-391968532

关于clipboard - 用于Windows的Linux子系统中的剪贴板中的管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55974462/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com