[Tools] Create Files in the Terminal from the Clipboard with PBPaste
Posted answer1215
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Tools] Create Files in the Terminal from the Clipboard with PBPaste相关的知识,希望对你有一定的参考价值。
You‘ll often find yourself going through a tutorial where you need to copy some code from a webpage and create a file and paste the contents onto your local machine. Your terminal has a useful tool called "pbpaste" which allows you to paste contents into a file using a standard redirect.
Use:
pbpaste > ./index.html
It is built-in with Mac
You can also use `pbcopy`, checkout https://langui.sh/2010/11/14/pbpaste-pbcopy-in-mac-os-x-or-terminal-clipboard-fun/
echo ‘Hello World!‘ | pbcopy
以上是关于[Tools] Create Files in the Terminal from the Clipboard with PBPaste的主要内容,如果未能解决你的问题,请参考以下文章