Some keyboard shortcuts and commands for the Bash.
| Key sequence | Action |
|---|---|
| ctrl-c | Kill current process |
| ctrl-z | Send current process to background |
| fg return | Restore background process to foreground |
| ctrl-d | Log out of terminal |
| ctrl-l | Clear terminal |
| ctrl-u | Clear line |
| ctrl-k | Delete from position of cursor to end of line |
| ctrl-w | Delete word before cursor |
| alt-b | Back one word |
| alt-f | Forward one word |
You can find more on the Wikipedia page: Bash (Unix shell).

