1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/osx/pbpaste.md

14 lines
298 B
Markdown
Raw Normal View History

2019-03-13 11:29:27 +08:00
# pbpaste
> 将剪贴板的内容发送到标准输出。
> 相当于在键盘上按下 Cmd + V.
> 更多信息:<https://ss64.com/osx/pbpaste.html>.
2019-03-13 11:29:27 +08:00
- 将剪贴板的内容写入文件:
2019-03-13 11:29:27 +08:00
`pbpaste > {{路径/到/文件}}`
2019-03-13 11:29:27 +08:00
- 将剪贴板的内容用作命令的输入:
2019-03-13 11:29:27 +08:00
`pbpaste | grep foo`