Last Updated: January 28, 2019
·
385
· jotka

CTRL+V in windows cmd.exe

use AutoHotKey and exec this script

#IfWinActive ahk_class ConsoleWindowClass
^V:: ; Paste in command window.
  StringReplace clipboard2, clipboard, \r\n, \n, All
  SendInput {Raw}%clipboard2%
return
#ifWinActive