Is there a way to paste to the shell what's in my clipboard?
--
abc3354
Hi !
If you do not want to use the context menu, there are keyboard shortcuts
Use ctrl-inser to copy and shift-inser to paste
Replit helper here !
If you found my answer helpful, you can upvote it :)
If my post answers the question, mark it as the answer with the check mark !
TieDyeKatz
I am not too sure how you would input CTRL+V or CMD+V in a shell directly in Bash unless Readline is available for it (It's not unless you are using a Linux server). Otherwise, it will only do ^V as one character. If you know NodeJS, you can use the var readline = require('readline-sync')
command to install Readline, and then by using the var <variablename> = readline.question("<yourquestion>")
command, then you can paste directly.
You can just right click on the terminal and select paste.
But it is not working [email protected]