add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,12 +1,20 @@
# clip
> 将输入内容复制到 Windows 剪贴板。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/clip>.
> 将输入内容复制到 Windows 剪贴板。
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/clip>
- 用管道将命令输出内容复制到 Windows 剪贴板:
- 将命令输出通过管道发送到 Windows 剪贴板:
`{{dir}} | clip`
-一个文件的内容复制到 Windows 剪贴板:
- 将文件的内容复制到 Windows 剪贴板:
`clip < {{文件的路径}}`
`clip < {{path\to\file.ext}}`
- 将带有换行符的文本复制到 Windows 剪贴板:
`echo {{some text}} | clip`
- 将不带换行符的文本复制到 Windows 剪贴板:
`echo | set /p="some text" | clip`