Copy Paste in Bash on Ubuntu on Windows

后端 未结 13 1623
没有蜡笔的小新
没有蜡笔的小新 2020-12-07 09:32

How to execute a copy paste operation from Windows 10 to the Bash on Ubuntu on Windows environment?

I tried the following:

  • ctrl + shift
相关标签:
13条回答
  • 2020-12-07 10:01

    You can use AutoHotkey (third party application), the command below is good with plain alphanumeric text, however some other characters like =^"%#! are mistyped in console like bash or cmd. (In any non-console window this command works fine with all characters.)

    ^+v::SendRaw %clipboard%
    
    0 讨论(0)
提交回复
热议问题