You can use C-x C-e
in bash to open the current line in $EDITOR
and edit it there. Much faster than copying and pasting :)
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Thank you :) Helps alot !!
As soon as a bash command gets to multiple lines, i save it as a bash script and then edit it in a text editor.
Thank you for your response :) But that's actually what I don't want to do...
It’s not about looking pretty, I like to navigate freely like CTRL-E, CTRL-A, ALT-B, ALT-F… speeds up the process and is frictionless (like your link suggests it :P). Sometimes I copy/past an already written command in the CLI with multilines and not being able to navigate thourgh them is frustrating !
Ctrl+x Ctrl+e
Hey :) Thank you !! That's not exactly what I hoped for but it does the trick very smoothly !!!!
Personally if its just a bash command then I dont bother with formatting and just do one-liners. If I want it to look pretty then I’ll put it in a script. If I need to edit something you can use shortcuts like these to jump around the command line to edit whatever you need
Hey, thank you for your response :)
It's not about looking pretty, I like to navigate freely like CTRL-E, CTRL-A, ALT-B, ALT-F... speeds up the process and is frictionless (like your link suggests it :P). Sometimes I copy/past an already written command in the CLI with multilines and not being able to navigate thourgh them is frustrating !
You can use the emacs shortcuts to navigate quickly, jump forward or backwards over words or to the start or end of a line.
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.
- Ctrl-A (jump to beginning of line)
- Ctrl-E (jump to end of line)
- Ctrl-W (delete word)
- Alt-F (jump one word forward)
- Alt-B (jump one word back)
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 !
Thank you for your contribution !