Hello there :)
As far as I know (searched through the web), editing/navigating a multiline in bash is not possible and opening nano, pasting and editing is to much friction I want to get rid off.
Do you have any way to speed up the process?
example of multiline:
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Thank you :)
Hey thank you :) I didn’t knew these shortcuts where called emacs ! As @taaz said Ctrl+x Ctrl-e is probably the best I will get.
These get me most of the way around.
It also depends on your terminal emulator. For instance on my Mac I’ve mapped the above to the typical keybinds (alt-left, alt-right, ctrl-backspace)
Thank you :) My question was maybe a bit confusing (not native :( ) and yes I know those EMACs shortcuts to navigate around :). It was relate to how to navigate a multiline in a copy/pasted command in the shell. The solution is (even if it wasn’t what I expected) to Ctrl-x Ctrl-e, this opens an editor with my copied command. This is one more step, but it’s elgant and takes away the fritction from opening nano myself !
But thank you for your contribution !