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

If I'm using terminal and typing in a line of text for a command, is there hotkey or anyway to clear/delete that line?

For example, if my current line/command is something really long like:

> git log --graph --all --blah..uh oh i want to cancel and clear this line <cursor is here now>

Is there a hotkey or command to go from the above to:

>

?

Usually I will press the down key and if my current line is a brand new one on the history, that will clear it. But if I'm going through my command history via the up key and start editing or using those commands, down will only change the prompt to the next newest command in history, so it doesn't work here unless I press down multiple times.

Thanks!

share|improve this question

6 Answers

up vote 32 down vote accepted

You can use Ctrl-U to clear up to the beginning.

You can also use Ctrl-C to cancel.

If you want to keep the history, you can use Alt-Shift-# to make it a comment.

share|improve this answer
4  
The line deleted by Ctrl-U is recallable with Ctrl-Y, too. – keks Dec 4 '12 at 10:59
Wut? So cool thanks keks & kev, ⌃+U is delete all before Cursor, ⌃+K is delete all after Cursor, ⌃+A is to go to the beginning of the line. So technically ⌃+C is the best solution for the Question – Viktor Apr 27 at 20:42

Ctrl+A Ctrl+K to wipe the current line in the terminal. You can then recall it with Ctrl+Y if you need.

share|improve this answer

An alternative to Ctrl-A, Ctrl-K is Ctrl-E, Ctrl-U =)

share|improve this answer

or if your using vi mode, hit Esc followed by cc

to get back what you just erased, Esc and then p :)

share|improve this answer

I'm not sure if you love it but I use ctrl + a (to go beginning the line) and ctrl + k (to delete the line) I was familiar with these commands from emacs, and figured out them accidently.

share|improve this answer

Just to summarise all the answers

 - Clean up the line- You can use **Ctrl-U** to clear up to the beginning.
 - Clean up the line- Ctrl+A Ctrl+K to wipe the current line in the terminal 
 - Cancel the current command/line Ctrl-C.
 - Recallable the deleted command with Ctrl-Y 
 - Go at the beginning of the line ctrl+A 
 - Remove the forward words for example, if you are middle of the command ctrl + k
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.