假设我的桌面上有一个图像,
$ ls
1.png
我想将其复制到剪贴板,并尝试过
$ pbcopy 1.png
^C
我应该手动终止该进程。
如何将图像复制到剪贴板,以便我可以粘贴它们?
答案1
从man pbcopy
:
pbcopy takes the standard input and places it in the specified paste-
board.
它不使用文件名作为参数,而是使用标准输入。所以:
pbcopy < 1.png
假设我的桌面上有一个图像,
$ ls
1.png
我想将其复制到剪贴板,并尝试过
$ pbcopy 1.png
^C
我应该手动终止该进程。
如何将图像复制到剪贴板,以便我可以粘贴它们?
从man pbcopy
:
pbcopy takes the standard input and places it in the specified paste-
board.
它不使用文件名作为参数,而是使用标准输入。所以:
pbcopy < 1.png