Home BASH The List Of Useful Bash Keyboard Shortcuts

The List Of Useful Bash Keyboard Shortcuts

By sk
Published: Last Updated on 42.2K views

Nowadays, I spend more time in Terminal. I learned many BASH tricks over time. Here is the list of useful of BASH keyboard shortcuts that every Linux users should know to get things done faster in their BASH shell. I won't claim that this list is a complete list of BASH shortcuts, but just enough to move around your BASH shell faster than before.

Bash keyboard shortcuts

Learning how to navigate faster in BASH Shell not only saves some time, but also makes you proud of yourself for learning something worth. Well, let's get started.

ALT key shortcuts

1. ALT+A - Go to the beginning of a line.

2. ALT+B - Move one character before the cursor.

3. ALT+C - Suspends the running command/process. Same as CTRL+C

4. ALT+D - Closes the empty Terminal (I.e it closes the Terminal when there is nothing typed). Also deletes all characters after the cursor.

5. ALT+F - Move forward one character.

6. ALT+T - Swaps the last two words.

7. ALT+U - Capitalize all characters in a word after the cursor.

8. ALT+L - Uncaptalize all characters in a word after the cursor.

9. ALT+R - Undo any changes to a command that you have brought from the history if you’ve edited it.

10. ALT+. (note the dot at the end) - Use the last word of the previous command.

If you want to use the same options for multiple commands, you can use this shortcut to bring back the last word of previous command. For instance, I need to short the contents of a directory using "ls -r" command. Also, I want to view my Kernel version using "uname -r". In both commands, the common word is "-r". This is where ALT+. shortcut comes in handy. First run, ls -r command to do reverse shorting and use the last word "-r" in the nex command i.e uname.

CTRL key shortcuts

1. CTRL+A - Quickly move to the beginning of line.

Let us say you're typing a command something like below. While you're at the N'th line, you noticed there is a typo in the first character

$ gind . -mtime -1 -type

Did you notice? I typed "gind" instead of "find" in the above command. You can correct this error by pressing the left arrow all the way to the first letter and replace "g" with "f". Alternatively, just hit the CTRL+A or Home key to instantly go to the beginning of the line and replace the misspelled character. This will save you a few seconds.

2. CTRL+B - To move backward one character.

This shortcut key can move the cursor backward one character i.e one character before the cursor. Alternatively, you can use LEFT arrow to move backward one character.

3. CTRL+C - Stop the currently running command

If a command takes too long to complete or if you mistakenly run it, you can forcibly stop or quit the command by using CTRL+C.

4. CTRL+D - Delete one character backward.

If you have a system where the BACKSPACE key isn't working, you can use CTRL+D to delete one character backward. This shortcut also lets you logs out of the current session, similar to exit.

5. CTRL+E - Move to the end of line

After you corrected any misspelled word in the start of a command or line, just hit CTRL+E to quickly move to the end of the line. Alternatively, you can use END key in your keyboard.

6. CTRL+F - Move forward one character

If you want to move the cursor forward one character after another, just press CTRL+F instead of RIGHT arrow key.

7. CTRL+G - Leave the history searching mode without running the command.

Leave the history searching mode

Leave the history searching mode

As you see in the above screenshot, I did the reverse search, but didn't execute the command and left the history searching mode.

8. CTRL+H - Delete the characters before the cursor, same as BASKSPACE.

9. CTRL+J - Same as ENTER/RETURN key.

Tip: ENTER key is not working? No problem! CTRL+J or CTRL+M can be used as an alternative to ENTER key.

10. CTRL+K - Delete all characters after the cursor.

You don't have to keep hitting the DELETE key to delete the characters after the cursor. Just press CTRL+K to delete all characters after the cursor.

11. CTRL+L - Clears the screen and redisplay the line.

Don't type "clear" to clear the screen. Just press CTRL+L to clear and redisplay the currently typed line.

12. CTRL+M - Same as CTRL+J or RETURN.

13. CTRL+N - Display next line in command history.

You can also use DOWN arrow.

14. CTRL+O - Run the command that you found using reverse search i.e CTRL+R.

15. CTRL+P - Displays the previous line in command history.

You can also use UP arrow.

16. CTRL+R - Searches the history backward (Reverse search).

17. CTRL+S - Searches the history forward.

18. CTRL+T - Swaps the last two characters.

This is one of my favorite shortcut. Let us say you typed "sl" instead of "ls". No problem! This shortcut will transposes the characters as in the below screenshot.

Swap the last two characters

Swap the last two characters

19. CTRL+U - Delete all characters before the cursor (Kills backward from point to the beginning of line).

This shortcut will delete all typed characters backward at once.

20. CTRL+V - Makes the next character typed verbatim

21. CTRL+W - Delete the words before the cursor.

Delete the words before the cursor

Delete the words before the cursor.

Don't confuse it with CTRL+U. CTRL+W won't delete everything behind a cursor, but a single word.

22. CTRL+X - Lists the possible filename completions of the current word.

23. CTRL+XX - Move between start of command line and current cursor position (and back again).

24. CTRL+Y -  Retrieves last item that you deleted or cut.

Remember, we deleted a word "-al" using CTRL+W in the 21st command. You can retrieve that word instantly using CTRL+Y.

Retrieve last item that you deleted or cut

Retrieve last item that you deleted or cut

See? I didn't type "-al". Instead, I pressed CTRL+Y to retrieve it.

Ctrl+U and CTRL+Y shortcuts are very useful in situations where you want to quickly delete the commands and retrieve them instantly.

Ctrl-U will delete from the cursor to the beginning of the line, and Ctrl-Y will bring it back.

So if you have entered a long and complex command, but then remembered you needed to execute something else first, don't delete it, but press Ctrl-U. When you have executed all the intermediate commands, you press Ctrl-Y.

25. CTRL+Z - Stops the current command.

You may very well know this shortcut. It kills the currently running command. You can resume it with fg in the foreground or bg in the background.

26. CTRL+[ - Equivalent to ESC key.

Miscellaneous

1. !! - Repeats the last command.

2. ESC+t - Swaps the last two words.

For example, it would turn the following command from,

ls -al

to,

al -ls

That's all I have in mind now. I will keep adding more if I came across any Bash shortcut keys in future. If you think there is a mistake or typo in this article, please let me in the comments section below. I will check and update it accordingly.

You May Also Like

16 comments

Jose September 15, 2023 - 11:17 pm

I reply myself:

If you supply a negative argument to Alt-., it reverses direction. The easiest way to do that (with standard keybindings) is Alt– (equivalent to an argument of -1).

So, after one or more Alt-. keypresses, pressing Alt– will cause the next Alt-. to go in the reverse direction. (Just ignore the argument dialog which appears when you press Alt–.)

Source: https://superuser.com/questions/593857/how-can-you-reverse-the-direction-of-alt-period-in-bash

Reply
beauvoir November 30, 2023 - 8:46 pm

Merci

Reply
1 2

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. By using this site, we will assume that you're OK with it. Accept Read More