Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 497 Bytes

Bash-shell-shortcuts.md

File metadata and controls

15 lines (11 loc) · 497 Bytes
  • Date : 2016-03-26
  • Tags : #sysadmin #bash #shell #shortcuts

Bash shell shortcuts

  • Ctrl + e : jump cursor to EOL
  • Ctrl + a : jump cursor to BOL (beginning of line)
  • Ctrl + u : delete all from cursor to BOL
  • Ctrl + k : delete all from cursor to EOL
  • Ctrl + r : search history, press again for next search
  • Ctrl + l : clear shell screen
  • Ctrl + c : terminate the command (sometimes have to press twice)
  • Ctrl + z : suspend the command, back to shell. Run fg to resume the command