0

In windows I can paste the clipboard content using the key combination Ctrl + V

However if I try to achieve the same in Linux terminal using the same Ctrl + V key combination, I get the output:

^V

How to paste clipboard content to terminal in Linux using keybord?

rancho
  • 140
  • 1
  • 11
  • What's your terminal client? Are you on Linux and then running a terminal? On Windows and then accessing via Putty or similar? The answer will vary depending on the terminal client you're using. – ernie Jun 24 '16 at 23:56

2 Answers2

1

Try using the keyboard combination:

Ctrl + Shift + V

rancho
  • 140
  • 1
  • 11
1

Try Ctrl Insert to copy and Shift Insert paste. According to wikipedia this is in accordance with the IBM Common User Access (CUA) standard. It works in all the X11 terminals that I have tried it on (but it seems xterm for some reason adds 5~ while copying) and it also works in putty from Windows. I like it because I can use only my right hand (using right Ctrl and Shift).

Law29
  • 496
  • 1
  • 4
  • 15