0

I know there are a lot of threads, tutorials and questions about how to work around it, but I do not get, WHY you simply cannot use Ctrl+C and Ctrl+V to insert a line for example from the browser into the bash (Linux) / cmd (Windows).

Is there a specific reason why this isn't yet implemented?

It works like this:

  • Ctrl+C from the source
  • Right Click -> Paste in the Bash or CMD
phuclv
  • 26,555
  • 15
  • 113
  • 235
codepleb
  • 1,175
  • 4
  • 17
  • 24
  • 1
    You can... in Windows 10. Just don't use the legacy console. Simply right click on the cmd window, properties, and uncheck use legacy console. This is because back in the days of MSDOS and Unix, they didn't have copy paste, and cmd and terminal are based on that. Also, some Linux versions let you do this, such as Mint Linux and Kali. – Kirill2485 Oct 23 '15 at 05:29
  • @grawity: You wrote a nice answer there. I wonder if maybe Canonical is gonna change that someday. They made a name for themself in making difficult decisions (often needed). – codepleb Oct 23 '15 at 06:10

1 Answers1

1

Control key sequences like Ctrl-V have been in use in individual command line apps since the time before Mac-like windowed environments first appeared. I assume that terminal emulator developers are reluctant to break compatibility just to cater to GUI shortcut conventions, with the thinking that the majority of command line users are expecting Ctrl-V go through properly to their command line apps that use it for something and the majority of GUI users don't go anywhere near the command line.

rakslice
  • 2,608
  • 2
  • 21
  • 27