So, I'm updating a configuration file on a remote server (using MobaXterm), and I need to copy the contents into some Trello documentation running in a browser on my local Windows machine.
The old fashioned way to do it is to select it with the mouse (which MobaXterm interprets as copying to my Windows clipboard), then Shift+Insert it into the browser. Well, turns out you can use the command line:
[Bishop@Cygwin]$ ssh user@host "< /path/to/file" | clip
On Windows, clip
is a program to read from standard in and put into the Windows clipboard. On Mac OSX, replace clip
with pbcopy
for the same effect.
You could extend this approach: instead returning the whole file, return the result of a pipe line. Neat. Like magic, no more mouse needed.