up vote 30 down vote favorite
6
share [g+] share [fb]

Is it possible to pipe to/from the clipboard in bash? Whether it's piping to/from a device handle or using an auxiliary application, I can't find anything.

For example, if /dev/clip was a device linking to the clipboard we could do:

cat /dev/clip        # dump the contents of the clipboard
cat foo > /dev/clip  # dump the contents of "foo" into the clipboard
link|improve this question

feedback

6 Answers

up vote 34 down vote accepted

You're a little ambiguous. I expect you're probably a Linux user inside X who wants to put stuff in the X PRIMARY clipboard.

It's important to understand that bash doesn't have a clipboard. There is no such thing as "the" clipboard, because bash can run on Windows, Mac OS X, lots of other OSes, inside X, outside X, ... Not to mention that X itself has three different clipboards itself. There's a wealth of clipboards you could be dealing with. Usually the clipboard you want to talk to has a utility that lets you talk to it.

In case of X, yes, there's xclip (and others).

If you're trying to talk to the Mac OS X clipboard, there's pbcopy.

If you're in Linux terminal mode (no X) then maybe you need to look into gpm.

There's also GNU screen which has a clipboard. To put stuff in there, look at the screen command "readreg".

For Windows, read /dev/clipboard (thanks glenn).

link|improve this answer
2  
cygwin: /dev/clipboard – glenn jackman May 31 '11 at 13:48
on Windows, /dev/clipboard also works for Msys/MinGW bash shells – Mihai Rotaru Jun 7 '11 at 12:43
Note that xclip -selection c will send data to the clipboard that works with ^C, ^V in most applications – Klaas van Schelven Aug 14 '11 at 15:23
2  
on newer windows versions you can just use clip like this: dir | clip – maep Nov 8 '11 at 12:43
feedback

Try xclip, (man).

link|improve this answer
Sweet, this is perfect! :) – marcog Apr 14 '09 at 22:37
feedback

There are different clipboards in linux, the X server has one, the window manager might have another one, etc. There is no standard device.

Oh, yes, on CLI, the screen program has its own clipboard as well, as do some other applications like emacs and vi.

In X, you can use xclip.

You can check this thread for other possible answers: http://unix.derkeiler.com/Newsgroups/comp.unix.shell/2004-07/0919.html

link|improve this answer
1  
It sounds like creating /dev/clip would be a good project for someone. – T.E.D. Apr 14 '09 at 22:21
I am perfectly aware of the multiple clipboards. How does this make my question any more difficult to answer? – marcog Apr 14 '09 at 22:23
Check the edits, I needed time to get the resources. – Sunny Apr 14 '09 at 22:33
feedback

Make sure you are using alias xclip="xclip -selection c" otherwise you can't just use to CTRL+v to paste it back in a different place.

echo test | xclip

CTRL+v === test

link|improve this answer
feedback

On Mac OS X you might find these command line tools handy

pbcopy pbpaste

link|improve this answer
feedback

On Windows (with Cygwin) try cat /dev/clipboard or echo "foo" > /dev/clipboard as mentioned in this article.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.