clip: add traditional Chinese translation (#11003)

pull/23/head
Poy Chang 2023-10-16 22:01:15 +08:00 committed by GitHub
parent 80e7d3ba31
commit 8bd62929a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# clip
> 將輸入的內容複製到 Windows 剪貼簿中。
> 更多資訊:<https://learn.microsoft.com/windows-server/administration/windows-commands/clip>.
- 使用管道將命令輸出的內容複製到 Windows 剪貼簿中:
`{{dir}} | clip`
- 將文件內容複製到 Windows 剪貼簿中:
`clip < {{檔案/完整/路徑}}`
- 將帶有換行符的內容複製到 Windows 剪貼簿中:
`echo {{文字}} | clip`
- 將不帶換行符的內容複製到 Windows 剪貼簿中:
`echo | set /p="文字" | clip`