Show Menu
Cheatography

Basic Bash Keyboard Shortcuts by

This cheatcheat will help you to improve your skills in bash, There are 2 columns, the left one is the command in parent­hesis ex (C-j) = Ctrl + j and the right one will do a simple descri­ption. - The Notes Section could help to resolve some problems or include features into your Terminal. - Finally this is only the the basic commands, but if you want to know more. check the More Info Section. You could find advance shortcuts that can help to improve your skills

Basic Bash

Last Update
2021-06-26
| Im_tavo |

Basic Shortcuts

(TAB)
complete: Attempt to perform completion on the text before point. [more]
(C-j)
⏎ accept­-line: Send a newline (
\n
)
(C-c)
interrupt (kill): The current foreground process running in in the terminal. [more]
(C-d)
end-of­-file (EOF): If there are no chars on the line, Readline returns EOF
(C-z)
suspend: stop the program execution.
fg
to resume,
jobs -l
to list and
kill <id>
to close it [more]
(M-.)
insert­-la­st-­arg­ument : Move 'backw­ards' through the previous aguments
(C-p)
previo­us-­his­tory: Move ‘backward’ through the history list, fetching the previous command.
(C-n)
next-h­istory: Move ‘forward’ through the history list, fetching the next command.
(C-r)
revers­e-s­ear­ch-­his­tory: Search 'backward' through the history. This is an increm­ent­al-­search.
(C-s)
forwar­d-s­ear­ch-­his­tory: Search 'forward' through the history. Important! You need to disable the xon first to use it (
stty -ixon
)
(C-a)
beginn­ing­-of­-line: Move to the start of the line.
(C-e)
ending­-of­-line: Move to the end of the line
(M-b)
backwa­rd-­word: Move backward a word
(C-b)
backwa­rd-­char: Move backward a character.
(M-f)
forwar­d-word: Move forward a word
(C-f)
forwar­d-char: Move forward a character.
(C-u)
unix-l­ine­-di­scard: Kill 'backward' from the cursor to the beginning of the current line.
(C-k)
kill-line: Kill 'forward' from the cursor to the end of the current line.
(M-BS)
delete­-ba­ckw­ard­-word: Kill the word behind point (BS = backspace)
(M-d)
delete­-fo­rwa­rd-­wrord: Kill from point to the end of the current word
(C-l)
clear-­screen: Clear the screen, reprinting the current line at the top.
(C-/)
undo: Increm­ental undo, separately remembered for each line.
(C-y)
yank: Yank the top of the kill-ring into the buffer at point. [more]
(M-y)
yank-pop: Rotate the kill-ring, and yank the new top. You can only do this if the prior command is
yank
or
yank-pop
.
(C-s)
transm­it-off (XOFF): Stops the data flow from the keyboard [more]
(C-q)
transm­it-on (XON): Enable the data flow and release all the info contained [more]
(C-)
: Control key =
Ctrl

(M-)
: Meta key [] =
Alt
, [] =
Opt
(check Notes)
It is a loose convention that
(C-)
operate on
chars
while
(M-)
operate on
words
. [more]
‘Cut’ and ‘paste’ are more recent jargon for ‘kill’ and ‘yank’.
 

Notes

For Firefox users: Cheath­ography uses a preload option to load the icons and firefox disable it by default. To enable it. Write this in the URL bar
about:­config
, search the
networ­k.p­reload
option and set it
true

You can find more info in this link [more]
For Mac users: The
Meta
key is setted to the
ESC
, but you can set the
Opt
key as well. Just open the terminal and go to
Terminal > Prefer­ences > Basic Default > Keyboard > Use option as meta key

If you need more inform­ation, read this tutorial [more]
Spanish Keyboard Mac users: There are some users that say that the config­uration of
Opt
key above can disable some keys like
~#¬]}\|
For Windows user There are some ways tu use the bash shortcuts in terminal. if you want to use the native powers­hell, check this [Article] to see how to use Bash shortcuts
I really loved doing this cheats­heet, I expect that it could helps you

More Info

               
 

Comments

No comments yet. Add yours below!

Add a Comment

Your Comment

Please enter your name.

    Please enter your email address

      Please enter your Comment.

          Related Cheat Sheets

          Linux Command Line Cheat Sheet
          bash Shortcuts Cheat Sheet
          Bash Script Colors Cheat Sheet

          More Cheat Sheets by gamejia90

          Vimtutor Cheat Sheet
          Full Bash Shortcuts Cheat Sheet