Files
tldr/pages.zh/osx/pbcopy.md

13 lines
278 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# pbcopy
> 将标准输出放入剪贴板(命令行里的 cmd + C
> 更多信息:<https://ss64.com/osx/pbcopy.html>.
- 将文件的内容放入剪贴板:
`pbcopy < {{文件}}`
- 将命令的执行结果放入剪贴板:
`find . -type t -name "*.png" | pbcopy`