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:21] – [Emacs mode vs Vi Mode] 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>                  | 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+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+o</key>                  | Execute the command found via <key>Ctrl+r</key> or <key>Ctrl+s</key>                                                                                                                                                                                                             +| <key>CTRL+o</key>                  | Execute the command found via <key>Ctrl+r</key> or <key>Ctrl+s</key>                                                                                                                                                                                                                
-| <key>CTRL+G</key>                  | Leave **Bash recall mode** without running a command.                                                                                                                                                                                                                            +| <key>CTRL+G</key>                  | Leave **Bash recall mode** without running a command.                                                                                                                                                                                                                               
-| <key>CTRL+P</key> or <key>⇧</key>  | Go to the previous command in the command history. Press the shortcut multiple times to walk back through the history.                                                                                                                                                           +| <key>CTRL+P</key> or <key>⇧</key>  | Go to the previous command in the command history. Press the shortcut multiple times to walk back through the history.                                                                                                                                                              
-| <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+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>ALT+r</key>                   | Revert any changes to a command you’ve pulled from your history if you’ve edited it.                                                                                                                                                                                             +| <key>ALT+r</key>                   | Revert any changes to a command you’ve pulled from your history if you’ve edited it.                                                                                                                                                                                                
-| <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+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**).                                                                                                                                                     
-| !!                                 | Repeat last command                                                                                                                                                                                                                                                              +| !!                                 | Repeat last command                                                                                                                                                                                                                                                                 
-| !abc                               | Run last command starting with abc                                                                                                                                                                                                                                               +| !abc                               | Run last command starting with abc                                                                                                                                                                                                                                                  
-| !abc:                            | Print last command starting with abc                                                                                                                                                                                                                                             +| !abc:                            | Print last command starting with abc                                                                                                                                                                                                                                                
-| !$                                 | Last argument of previous command                                                                                                                                                                                                                                                +| !$                                 | Last argument of previous command                                                                                                                                                                                                                                                   
-| <key>ALT+.</key>                   | Last argument of previous command                                                                                                                                                                                                                                                +| <key>ALT+.</key>                   | Last argument of previous command                                                                                                                                                                                                                                                   
-| !*                                 | All arguments of previous command                                                                                                                                                                                                                                                +| !*                                 | All arguments of previous command                                                                                                                                                                                                                                                   
-| %%^abc^def%%                       | Run previous command, replacing abc with def                                                                                                                                                                                                                                     |+| %%^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 114: 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 145: 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.1613049698.txt.gz · Last modified: 2021/02/11 13:21 by mischerh