create a file from content on your clipboard
You're on github or something, reading code. You need to add some code to your project. You could:
curl or wget the file URL
clone the repo, extract single file, move it on file system
create the file, open an editor, and paste in the content
save as
Here's a terminal command I like. From your project directory, run:
pbpaste | cat >> foo.js
If you're on linux, replace pbpaste with your terminal paste utility. If you're on windows, g-d help you and install a linux vm :)

















