How can I delete a whole word to the right in Linux Bash Shell command line?
Such as this:
- Ctrl + U = Delete left of the cursor
- Ctrl + K = Delete right of the cursor
- Ctrl + W = Delete word on the left
I want to know a shortcut to delete a whole word on the right, no matter where the cursor is in the word. It is just like in Vim opt it is:
daw
And I want to the same result on the Bash command line.