copy and paste from terminal with keyboard in linux (ubuntu) - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:50:38Zhttp://stackoverflow.com/feeds/question/761807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/761807/copy-and-paste-from-terminal-with-keyboard-in-linux-ubuntu1copy and paste from terminal with keyboard in linux (ubuntu)Silfheed2009-04-17T19:16:38Z2009-07-08T04:14:44Z
<p>Heyas</p>
<p>So I'm trying to move away from using the mouse as much as I can (just a pet project). I know that in the terminal you can do c-k to cut a line and c-u to paste that line back into that same terminal, but I'm looking for something where I can copy a line in the terminal into gnomes clipboard so I can paste it into say a browser or somesuch. </p>
<p>I know that if I use the mouse to highlight text, I can then hit shift-insert to paste that text, which is great, but now I just want to be able to do it without the mouse. Something like c-space highlighting in emacs (but even that doesn't copy into the gnome clipboard).</p>
<p>Thanks</p>
<p>Some more clarification, I have several different terminals open, and on many I've ssh'ed into various remote machines where utilities like xclip/xsel aren't as helpful.</p>
http://stackoverflow.com/questions/761807/copy-and-paste-from-terminal-with-keyboard-in-linux-ubuntu/761841#7618412Answer by Cory Walker for copy and paste from terminal with keyboard in linux (ubuntu)Cory Walker2009-04-17T19:26:17Z2009-04-17T19:32:49Z<p>Stated <a href="http://www.gnome.org/~bmsmith/gconf-docs/C/gnome-terminal.html" rel="nofollow">here</a>, the default commands for GNOME copy and paste are CTRL-SHIFT-C and CTRL-SHIFT-C.</p>
<p>Edit: I found a <a href="http://geekybits.blogspot.com/2007/10/gnome-tip-changing-keyboard-shortcuts.html" rel="nofollow">useful blog post</a> that allows you to enable terminal copy/paste to CTRL-C and CTRL-V in GNOME.</p>
http://stackoverflow.com/questions/761807/copy-and-paste-from-terminal-with-keyboard-in-linux-ubuntu/761865#7618650Answer by rmeador for copy and paste from terminal with keyboard in linux (ubuntu)rmeador2009-04-17T19:33:34Z2009-04-17T19:33:34Z<p>Might I suggest <a href="http://www.nongnu.org/ratpoison/" rel="nofollow">RatPoison</a> as your window manager? As the name suggests, you don't need a mouse at all. I'm not sure how it handles the clipboard though, as I've only ever used it for fun. It may depend on what terminal program you're using.</p>
http://stackoverflow.com/questions/761807/copy-and-paste-from-terminal-with-keyboard-in-linux-ubuntu/761900#7619004Answer by hlovdal for copy and paste from terminal with keyboard in linux (ubuntu)hlovdal2009-04-17T19:42:51Z2009-04-17T19:42:51Z<p>For interaction with the X11 clipboard from the command line, see <a href="http://stackoverflow.com/questions/740109/unable-to-copy-fast-a-file-to-clipboard-in-a-linux-computer">this question</a>.</p>
<p><hr /></p>
<p>Maybe a side track to what you ask for, but for terminal window interaction I can recommend <a href="http://www.gnu.org/software/screen" rel="nofollow">screen</a>, where you use keys to copy and paste (from a searchable scrollback buffer!). The copy and paste operation only is between screen controlled windows though like you describe with the terminal window and c-u & c-k, but you can easily dump to /tmp/screen-xchange and then use xclip to copy to the X11 clipboard.</p>
http://stackoverflow.com/questions/761807/copy-and-paste-from-terminal-with-keyboard-in-linux-ubuntu/1076845#10768451Answer by get working xterm for copy and paste from terminal with keyboard in linux (ubuntu)get working xterm2009-07-02T21:53:59Z2009-07-02T21:53:59Z<p>For long time I was also trying to sort out it, using vt100.translations: </p>
<p>!! from <a href="http://www.fifi.org/doc/xterm/xterm.faq.html#future_work" rel="nofollow">http://www.fifi.org/doc/xterm/xterm.faq.html#future_work</a>
"XTerm*vt100.translations: #override \n\
Insert: string(\001) \n\
Shift Up: scroll-back(1,lines) \n\
Shift Down: scroll-forw(1,lines) \n\
Shift Right: string(0x1b) string("f") \n\
Shift Left: string(0x1b) string("b") \n\
Shift Delete: string(0x1b) string(0x08) \n\
Shift Tab: string(0x1b) string("*") \n\
0x1000FF0D: scroll-back(1,page) \n\
0x1000FF0E: scroll-forw(1,page) \n\
0x1000FF09: string(\010) \n\
0x1000FF0A: string(\005) \n\
BackSpace: string(0xff) \n\
Select: select-start() \n\
: select-extend() \n\
0x1000FF02: select-end(PRIMARY,CUT_BUFFER0) \n\
Meta 0x1000FF02: select-end(CLIPBOARD) \n\
0x1000FF04: insert-selection(PRIMARY,CUT_BUFFER0) \n\
Meta 0x1000FF04: insert-selection(CLIPBOARD) \n\
F1: string(0x1b) string("OP")</p>
<p>no success </p>
<p>OK if we have set some key for select-start select-end ..extend
but how to bring cursor their. </p>
<p>gnu screen may be solution but, it will not properly in zsh, and we can not bring
cut text in Xclipboard.</p>