pages:howtos:bash:bash-command-line-editing
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pages:howtos:bash:bash-command-line-editing [2021/02/11 13:00] – [Moving the cursor] mischerh | pages:howtos:bash:bash-command-line-editing [2021/12/09 21:57] (current) – [Related] rokkitlawnchair | ||
---|---|---|---|
Line 1: | Line 1: | ||
{{tag> | {{tag> | ||
- | FIXME | + | ====== |
- | ====== Bash - Command Line Editing | + | |
===== Sources ===== | ===== Sources ===== | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
- | ===== Basic Shortcuts | + | ===== The Basics |
Bash is the default command-line shell on most Linux distributions and included in macOS. On Windows you can install a Linux-based bash environment ([[https:// | Bash is the default command-line shell on most Linux distributions and included in macOS. On Windows you can install a Linux-based bash environment ([[https:// | ||
The bash shell features a wide variety of keyboard shortcuts you can use. These will work in bash on any operating system. Some of them may not work if you’re accessing bash remotely through an SSH or telnet session, depending on how you have your keys mapped. | The bash shell features a wide variety of keyboard shortcuts you can use. These will work in bash on any operating system. Some of them may not work if you’re accessing bash remotely through an SSH or telnet session, depending on how you have your keys mapped. | ||
+ | |||
+ | With a few of these in your toolbelt, you’ll be a Terminal master in no time. | ||
+ | |||
^ Shortcut | ^ Shortcut | ||
| < | | < | ||
Line 21: | Line 24: | ||
| < | | < | ||
- | ===== Bash Keyboard Shortcuts ===== | ||
- | ==== TAB completion ==== | ||
- | **Tab completion** is a very useful bash feature. While typing a //file name//, //directory name//, or //command name//, press < | ||
- | ^ Shortcut | + | ===== TAB completion ===== |
- | | < | + | |
+ | **Tab completion** is a very useful bash feature. While typing a //file name//, //directory name//, or // | ||
+ | |||
+ | ^ Shortcut | ||
+ | | < | ||
For example: if you have a file named // | For example: if you have a file named // | ||
- | ==== Moving the cursor ==== | + | ===== Moving the cursor ===== |
Use the following shortcuts to quickly move the cursor around the current line while typing a command. | Use the following shortcuts to quickly move the cursor around the current line while typing a command. | ||
^ Shortcut | ^ Shortcut | ||
Line 41: | Line 46: | ||
| < | | < | ||
- | ==== Editing ==== | + | ===== Editing ===== |
Use the following shortcuts to quickly delete characters, fix typos and undo your key presses. Bash also includes some basic cut-and-paste features and is able to convert characters to upper or lower case. | Use the following shortcuts to quickly delete characters, fix typos and undo your key presses. Bash also includes some basic cut-and-paste features and is able to convert characters to upper or lower case. | ||
^ Shortcut | ^ Shortcut | ||
Line 62: | Line 68: | ||
| < | | < | ||
- | ==== Special keys: Tab, Backspace, Enter, Esc ==== | + | ===== Special keys: Tab, Backspace, Enter, Esc ===== |
Text Terminals send characters (bytes), not key strokes. Special keys such as **Tab**, **Backspace**, | Text Terminals send characters (bytes), not key strokes. Special keys such as **Tab**, **Backspace**, | ||
Line 84: | Line 91: | ||
similarly < | similarly < | ||
- | ==== History ==== | + | ===== Working With Your Command |
- | ^ Shortcut | + | You can quickly scroll through your recent commands, which are stored in your user account’s bash history file. |
- | | < | + | ^ Shortcut Command |
- | | < | + | | < |
- | | < | + | | < |
- | | < | + | | < |
- | | < | + | | < |
- | | < | + | | < |
- | | !! | Repeat last command | + | | <key>ALT+r</ |
- | | !abc | Run last command starting with abc | | + | | < |
- | | !abc: | + | | !! | Repeat last command |
- | | !$ | Last argument of previous command | + | | !abc | Run last command starting with abc | |
- | | < | + | | !abc: |
- | | !* | All arguments of previous command | + | | !$ | Last argument of previous command |
- | | %%^abc^def%% | + | | < |
+ | | !* | All arguments of previous command | ||
+ | | %%^abc^def%% | ||
+ | |||
+ | ===== Process control ===== | ||
- | ==== Process control ==== | ||
Use the following shortcuts to manage running processes. | Use the following shortcuts to manage running processes. | ||
^ Shortcut | ^ Shortcut | ||
Line 107: | Line 117: | ||
| < | | < | ||
- | ==== Controlling the screen ==== | + | ===== Controlling the screen ===== |
The following shortcuts allow you to control what appears on the screen. | The following shortcuts allow you to control what appears on the screen. | ||
^ Shortcut | ^ Shortcut | ||
Line 116: | Line 127: | ||
===== Emacs mode vs Vi Mode ===== | ===== Emacs mode vs Vi Mode ===== | ||
- | All the above assume | + | The above instructions |
- | Set **Vi Mode** in bash: | + | The following command will put bash into **vi mode**: |
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
set -o vi | set -o vi | ||
</ | </ | ||
- | Set **Emacs Mode** in bash: | + | The following command will put bash back into the **default emacs mod**e: |
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
set -o emacs | set -o emacs | ||
Line 138: | Line 149: | ||
* [[http:// | * [[http:// | ||
* Equivalent [[https:// | * Equivalent [[https:// | ||
+ | |||
+ | ---- | ||
+ | ~~DISCUSSION~~ |
pages/howtos/bash/bash-command-line-editing.1613048459.txt.gz · Last modified: 2021/02/11 13:00 by mischerh