User Tools

Site Tools


pages:howtos:bash:bash-command-line-editing

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pages:howtos:bash:bash-command-line-editing [2021/02/11 13:06] mischerhpages:howtos:bash:bash-command-line-editing [2021/12/09 21:57] (current) – [Related] rokkitlawnchair
Line 1: Line 1:
 {{tag>bash howto commandlineediting keyboard shortcut}} {{tag>bash howto commandlineediting keyboard shortcut}}
-FIXME 
 ====== Working with Bash Keyboard Shortcuts ====== ====== Working with Bash Keyboard Shortcuts ======
  
Line 11: Line 10:
  
 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                    ^ Command                                                        ^ ^ Shortcut                    ^ Command                                                        ^
 | <key>CTRL+L</key>           | Clear the screen.                                              | | <key>CTRL+L</key>           | Clear the screen.                                              |
Line 91: Line 93:
 ===== Working With Your Command History ===== ===== Working With Your Command History =====
 You can quickly scroll through your recent commands, which are stored in your user account’s bash history file. You can quickly scroll through your recent commands, which are stored in your user account’s bash history file.
-^ Shortcut                           ^ Command                                                                                                                                       ^ +^ Shortcut Command                                                                                                                                                                                                                                                                                                        || 
-| <key>CTRL+R</key> or <key>⇧</key>  Recall the last command including the specified character(s). Searches the command history as you typeEquivalent to : vim ~/.bash_history. +| <key>CTRL+r</key>                  This will enter **Bash recall mode** which you can use to search for commands you’ve previously run. It recalls the last command matching the characters you provide\\ Press <key>CTRL+r</key> and start typing to search your bash history (//~/.bash_history//) for a command.  | 
-| <key>CTRL+P</key> or <key></key>  | Previous command in history (i.e. walk back through the command history)                                                                      +| <key>CTRL+o</key>                  | Execute the command found via <key>Ctrl+r</key> or <key>Ctrl+s</key>                                                                                                                                                                                                                
-| <key>CTRL+N</key>                  | Next command in history (i.e. walk forward through the command history)                                                                       +| <key>CTRL+G</key>                  | Leave **Bash recall mode** without running a command.                                                                                                                                                                                                                               
-| <key>CTRL+S</key>                  | Go back to the next most recent command. (beware to not execute it from a terminal because this will also launch its XOFF)                  +| <key>CTRL+P</key> or <key>⇧</key>  | Go to the previous command in the command historyPress the shortcut multiple times to walk back through the history                                                                                                                                                             
-| <key>CTRL+O</key>                  | Execute the command found via <key>Ctrl+r</key> or <key>Ctrl+s</key>                                                                          +| <key>CTRL+N</key> or <key></key>  | Go to the next command in the command history. Press the shortcut multiple times to walk forward through the history.                                                                                                                                                               | 
-| <key>CTRL+G</key>                  | Escape from history searching mode                                                                                                            +<key>ALT+r</key>                   | Revert any changes to a command you’ve pulled from your history if you’ve edited it.                                                                                                                                                                                                
-| !!                                 | Repeat last command                                                                                                                           +| <key>CTRL+s</key>                  | Go back to the next most recent command. (beware to not execute it from a terminal because this will also launch its **XOFF**).                                                                                                                                                     
-| !abc                               | Run last command starting with abc                                                                                                            +| !!                                 | Repeat last command                                                                                                                                                                                                                                                                 
-| !abc:                            | Print last command starting with abc                                                                                                          +| !abc                               | Run last command starting with abc                                                                                                                                                                                                                                                  
-| !$                                 | Last argument of previous command                                                                                                             +| !abc:                            | Print last command starting with abc                                                                                                                                                                                                                                                
-| <key>ALT+.</key>                   | Last argument of previous command                                                                                                             +| !$                                 | Last argument of previous command                                                                                                                                                                                                                                                   
-| !*                                 | All arguments of previous command                                                                                                             +| <key>ALT+.</key>                   | Last argument of previous command                                                                                                                                                                                                                                                   
-| %%^abc^def%%                       | Run previous command, replacing abc with def                                                                                                  |+| !*                                 | All arguments of previous command                                                                                                                                                                                                                                                   
 +| %%^abc^def%%                       | Run previous command, replacing abc with def                                                                                                                                                                                                                                        | 
 + 
 +===== Process control =====
  
-==== Process control ==== 
 Use the following shortcuts to manage running processes. Use the following shortcuts to manage running processes.
 ^ Shortcut           ^ Command                                                                                                                                                                                                                 ^ ^ Shortcut           ^ Command                                                                                                                                                                                                                 ^
Line 113: Line 117:
 | <key>CTRL+z</key>  | Suspend the current foreground process running in bash. This sends the **SIGTSTP signal** to the process. To return the process to the foreground later, use the **fg** //process_name// command.                       | | <key>CTRL+z</key>  | Suspend the current foreground process running in bash. This sends the **SIGTSTP signal** to the process. To return the process to the foreground later, use the **fg** //process_name// command.                       |
  
-==== 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           ^ Command                                                                                                                                                                  ^ ^ Shortcut           ^ Command                                                                                                                                                                  ^
Line 122: Line 127:
  
 ===== Emacs mode vs Vi Mode ===== ===== Emacs mode vs Vi Mode =====
-All the above assume that bash is running in the **default Emacs setting**, if you prefer this can be switched to **Vi shortcuts** instead.+The above instructions assume you’re using the **default keyboard shortcut configuration** in bash. By **default**, bash uses **emacs-style** keys. If you’re more used to the **vi text editor**, you can switch to **vi-style** keyboard shortcuts.
  
-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
 </sxh> </sxh>
  
-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 144: Line 149:
   * [[http://catern.com/posts/terminal_quirks.html|Terminals Are Weird]] - How and why of terminal keybindings.   * [[http://catern.com/posts/terminal_quirks.html|Terminals Are Weird]] - How and why of terminal keybindings.
   * Equivalent [[https://support.microsoft.com/en-us/windows/keyboard-shortcuts-in-windows-dcc61a57-8ff0-cffe-9796-cb9706c75eec|Windows Keyboard shortcuts]]   * Equivalent [[https://support.microsoft.com/en-us/windows/keyboard-shortcuts-in-windows-dcc61a57-8ff0-cffe-9796-cb9706c75eec|Windows Keyboard shortcuts]]
 +
 +----
 +~~DISCUSSION~~
pages/howtos/bash/bash-command-line-editing.1613048815.txt.gz · Last modified: 2021/02/11 13:06 by mischerh