List some Hot Keys for bash shell ?

Ctrl+l . Clears the Screen. Ctrl+r . Does a search in previously given commands in shell. Ctrl+u - Clears the typing before the hotkey. Ctrl+a . Places cursor at the beginning of the command at shell. Ctrl+e . Places cursor at the end of the command at shell. Ctrl+d . Kills the shell. Ctrl+z . Places the currently running process into background.

1 comment:

Anonymous said...

Ctrl+w. Clears the 'WORD' of the command line. e.g abc pqr<<<<< xyz. In this case cursor is at word "pqr". It will create word pqr

-- ATUL KHACHANE.