I want to delete all characters after cursor in putty or shell. How can i achieve this?
Every time I want to delete the complete line, I need to press delete key and that is something I don't want to do.
Finding a way to delete the line improve my speed and effieciency.
e.g
$@ java -DSTOP.PORT=8982 -DSTOP.KEY=mysecret -jar start.jar --stop
@ is my cursor position so if I have to delete the line I have to keep pressing the delete key.
CTRL kshould do it. – jaypal singh Nov 28 '11 at 06:06CTRL kwill delete the entire line (from start of line to end of line). They want to delete from the cursor location to the end of line. – Antoine Dahan Feb 06 '21 at 02:47