history expansion
Reuse and expand the shell history insh,bash,zsh,rbashandksh. More information: https://www.gnu.org/software/bash/manual/html_node/History-Interaction.
-
Run the previous command as root (
!!is replaced by the previous command):
sudo !! -
Run a command with the last argument of the previous command:
{{command}} !$ -
Run a command with the first argument of the previous command:
{{command}} !^ -
Run the Nth command of the history:
!{{n}} -
Run the command
nlines back in the history:
!-{{n}} -
Run the most recent command containing
string:
!?{{string}}? -
Run the previous command, replacing
string1withstring2:
^{{string1}}^{{string2}}^ -
Perform a history expansion, but print the command that would be run instead of actually running it:
{{!-n}}:p
License and Disclaimer
The content on this page is copyright © 2014—present the tldr-pages team and contributors.This page is used with permission under Creative Commons Attribution 4.0 International License.
While we do attempt to make sure content is accurate, there isn't a warranty of any kind.