49

When entering a command which spans multiple lines in Bash, how do I edit previous lines? I'm a Linux Mint (Lisa) user using GNOME Terminal.

For example, let's say I type:

$ echo "foo bar
> baz
>

And then when I'm about to type the third line of the command, suddenly realize I want "foo" and "bar" to be on separate lines. How would I reposition my cursor between "foo" and "bar" such that I could press enter and put them on separate lines?

(It's not easy like you might think. Up arrow doesn't work, neither does Ctrl-P. So please, try it out before posting! Thanks!)

cdosborn
  • 692

4 Answers4

39

That, unfortunately, is up to bash, not to the terminal. Your options are:

  1. Use semicolons instead of newlines, although even then you can't move up a screen line at a time but must use character or word motion commands. (Oddly, zsh at least lets you move within a compound command when editing history, just not within the current command.) Sometimes fc (which tosses you into your editor with the previous command) is the easiest way to handle compound commands.

  2. If you are using Bash, use the following key combination:

    ctrl x e
    

    It will open up the command you are working on using your text editor. Save the file and quit. (I found the command on the Shell Hater's presentation.) Zsh users have this alternative.

geekosaur
  • 12,091
22

The solution is to never enter a command until the multi-line is right, just type: CtrlvCtrlj when you want to go to the next line. Metab to go back a word.

solution

credit to @rici's answer

cdosborn
  • 692
12

Funnily enough, Ctrl+C is what you are looking for.

when you are on

$ echo "foo bar
> baz
>

just press Ctrl+C (edited command line will suspend) and press Up (previous-history). Your prompt will be: (note the absence of >)

$ echo "foo bar
baz

Now you can move around with Left Right even through line jumps.

There is only one quirk, you must be on the last character to add another line, so move around to edit existing lines (go to start with Ctrl+A) an press Enter if that's enough or goto end (Ctrl+E) to add more lines with Enter. Another drawback is that Ctrl+_ (undo) only restores changes from last Ctrl+C

albfan
  • 561
-4

Copy the commands and paste them in notepad then format it from there. After that you can copy your commands back to the terminal.

Pacheko
  • 11