📌  相关文章
📜  bash 将文件内容复制到剪贴板 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:47.701000             🧑  作者: Mango

代码示例1
# Basic syntax using pbcopy:
pbcopy < /path/to/file

# Paste with:
pbpaste > /path/to/output_file

# Note, you can filter what you paste with grep, e.g.:
pbpaste | grep 'useful text' > /path/to/output_file