Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose in bash you start writing a command like:

$ rm -rf /foo/bar/really/long/path/here

and then realize you don't want to execute this after all. Is there a way to clear the input with one or two keystrokes?

What I have been doing lately is prepending echo and enclosing the input in quotes (Ctrl+A, echo ", Ctrl+E, ") then hitting enter. Is there a faster way?

share|improve this question

7 Answers

up vote 27 down vote accepted

Press Ctrl-C to abort what you're typing.

share|improve this answer
Thanks, this seems to do the trick. – user85509 Jun 29 '09 at 3:12
There is a caveat: Ctrl-C will kill the current prompt, start a new prompt, and set the return code to 1. – user716468 Jan 19 at 20:24

Try Control-U. That clears the input line.

share|improve this answer
Thanks, I nearly accepted this as the answer. But I found it clears only the input before the cursor. In some cases I am in the middle of editing the command, so I would rather remember Ctrl+C instead of Ctrl+U as simply "discard the current input". – user85509 Jun 29 '09 at 3:15
If used under Zsh it will clear the line :) – ggustafsson Oct 5 '12 at 20:21

Found a short reference at http://www.ice2o.com/bash_quick_ref.html while searching.

ctrl-e (if not at the end of the line) plus ctrl-u will do it.

share|improve this answer

there are two options to do this -

ctrl+C - this clears the whole line, no matter where the cursor is.

ctrl+u - this clear the line from the position of the cursor until the beginning.

-- can anyone ps try this. http://stackoverflow.com/questions/1056440/undelete-the-deleted-command-in-bash

share|improve this answer
1  
"Consider that using C-u (or C-e and then C-u) will store what you clear in a buffer so that you can then paste it later using C-y." Markisisme a simpler single command is ctrl+_. stackoverflow.com/questions/1056440/… answered by john kug -- just started stackoverflow dont have enough points to add comment to you answer. – vks Jun 29 '09 at 3:44

Pressing ESC plus Backspace in bash will clear everything up to the cursor's position.

share|improve this answer

Consider that using C-u (or C-e and then C-u) will store what you clear in a buffer so that you can then paste it later using C-y.

share|improve this answer

To delete the current line, try:

ctrl-x ctrl-u

As an alternative you may use:

esc-d

which requires in ~/.inputrc:

"\ed": kill-whole-line

see: http://codesnippets.joyent.com/posts/show/1690

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.