I sometimes start writing a command in the terminal (iTerm2) which half-way written I want to erase.

How can quickly remove all the characters on the line being worked on in the terminal?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Press Ctrl-C. This will essentially start a new line.

To clear everything before the cursor position, use Ctrl-U.

To clear everything after the cursor position, use Ctrl-K.

These are some of the basic Bash keyboard shortcuts.

link|improve this answer
Werner strikes again – BloodPhilia Jan 29 at 20:03
feedback

Your Answer

 
or
required, but never shown

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