261

How can I delete a word backward at the command line? I'm truly used to some editors deleting the last 'word' using Ctrl+Backspace, and I'd like that functionality at the command line too.

I am using Bash at the moment and although I could jump backward a word and then delete forward a word, I'd rather have this as a quick-key, or event as Ctrl+Backspace.

How can accomplish this?

Anthon
  • 79,293
lucidquiet
  • 2,859

6 Answers6

345

Ctrl+W is the standard "kill word" (aka werase). Ctrl+U kills the whole line (kill).

You can change them with stty.

-bash-4.2$ stty -a
speed 38400 baud; 24 rows; 80 columns;
lflags: icanon isig iexten echo echoe -echok echoke -echonl echoctl
        -echoprt -altwerase -noflsh -tostop -flusho pendin -nokerninfo
        -extproc -xcase
iflags: -istrip icrnl -inlcr -igncr -iuclc ixon -ixoff ixany imaxbel
        -ignbrk brkint -inpck -ignpar -parmrk
oflags: opost onlcr -ocrnl -onocr -onlret -olcuc oxtabs -onoeot
cflags: cread cs8 -parenb -parodd hupcl -clocal -cstopb -crtscts -mdmbuf
cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = <undef>;
        eol2 = <undef>; erase = ^?; intr = ^C; kill = ^U; lnext = ^V;
        min = 1; quit = ^\; reprint = ^R; start = ^Q; status = <undef>;
        stop = ^S; susp = ^Z; time = 0; werase = ^W;
-bash-4.2$ stty werase ^p
-bash-4.2$ stty kill ^a
-bash-4.2$

Note that one does not have to put the actual control character on the line, stty understands putting ^ and then the character you would hit with control.

After doing this, if I hit Ctrl+P it will erase a word from the line. And if I hit Ctrl+A, it will erase the whole line.

AdminBee
  • 22,803
kurtm
  • 7,055
  • 2
    Using the stty command I attempted to assign the "kill word" to Ctrl+BckSpc by typing stty werase followed by Ctrl-v Ctrl-Backspace. This inserts the literal Ctrl-Backspace character as the argument for stty werase. Unfortunately it does not require typing Ctrl-Backspace to delete the word but works with just the Backspace key. So I would like to second the request of @terdon to learn how to do this. To reset the werase to default, use stty werase Ctrl-v Ctrl-w. – Timothy Martin Oct 10 '13 at 07:26
  • 2
    @TimothyMartin I'm a little stuck on how to do ctrl-backspace. Backspace is generally sent as either ctrl-h or ctrl-?, so ctrl-backspace would somehow be ctrl-ctrl-backspace. I did try to figure out if something different was sent, but putty, at least, just sends backspace when you type ctrl-backspace. – kurtm Oct 10 '13 at 14:13
  • 3
    ctrl + w effectively deletes the word but it also copies to the clipboard, erasing anything you had stored (or pushing it down?). – Elijah Lynn Dec 28 '15 at 17:44
  • 2
    Anyone know how to make the 'word' stop at non word characters rather than only white spaces? IE with: 'curl a/asdf/xcvb', pressing ^w will get 'curl', but what I want is 'curl a/asdf/' – Rene Wooller Nov 23 '16 at 05:49
  • 4
    esc - delete just worked :-) – Rene Wooller Nov 23 '16 at 05:53
  • In my case, Ctrl+P cycles through previous commands like ArrowUp does. – neverMind9 Nov 11 '18 at 13:55
  • 1
    Do I understand correctly that despite this answer being accepted and the 200 upvotes no one ever figured out how to map backward delete word to CTRL+Backspace. (I have that combination setup everywhere else so I would really like to keep it.) – Kvothe Aug 06 '20 at 08:43
  • 1
    @Kvothe OP is not asking for it; however there are ways to remap keys in bash, see for example 1 2 3 or the answer below. – user202729 Jan 20 '21 at 09:44
  • Ctrl+W closed the tab in Solar-Putty – rd10 Apr 25 '23 at 09:44
92

Alt+Backspace works for me in bash and zsh.

Anthon
  • 79,293
Luis
  • 2,518
44

You can also do this with CtrlW.

Another option is to set your own shortcut but this will depend on the terminal emulator you are using. For xterm and rxvt and maybe others, add this line to your ~/.inputrc (create the file if it does not exist):

## rxvt, xterm
"\b":backward-kill-word

gnome-terminal and its ilk seem to have AltBackspace by default but apparently require you to patch readline() in order to get CtrlBackspace.

Also see:

terdon
  • 242,166
15

In Ubuntu 18.04.4 pressing Ctrl+V and then Ctrl+Backspace reveals that the Ctrl+Backspace combination is written as ^H.

You can show all current terminal key combinations using stty -a. In this case we want to change werase to ^H which can be done with

stty werase ^H

For any other key you want to remap you would again see how to write the new combination using Ctrl+V followed by the combination.

And you can find the command name (such as werase) by looking at stty -a and looking for the key combination an action is currently bound to.

AdminBee
  • 22,803
Kvothe
  • 413
  • 6
  • 14
  • It's 2020 and we can use backspace correctly on Linux :). The good news is I don't think this is specific to Ubuntu (see https://www.cs.colostate.edu/~mcrob/toolbox/unix/keyboard.html for some info). I've tried several different terminal emulators on arch and ^H works in each case. – pip Aug 30 '20 at 17:40
  • My man! How does this only have +6? Works on Cygwin as well. – Thick_propheT Mar 06 '21 at 00:25
  • And on Git Bash <3. Finally I have the same combination of keys in each shell. Great thanks! For anyone wondering how to do this for forward delete (CTRL + DEL), it's: bind '"5~": kill-word' – Mr Patience Feb 20 '22 at 09:53
2

On Mac, you can use:

Fn+Delete

Anthon
  • 79,293
J.Yang
  • 31
2

Surprisingly, esc then delete works on macOS too.

Also, if using iTerm2, you can update the default profile:

Keys > Key Mapping > Presets > Natural Text Editing
skube
  • 208