This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ !! # Repeat last command | |
$ !x # Repeat last command that started with x | |
$ !?x # Repeat last command that has the substring x | |
$ !10 # Repeat 10th command in the history file | |
$ !-10 # Repeat 10th from last command in the history file | |
$ !!* # Fetch parameters from last command | |
$ !!^ # Fetch first parameter from last command | |
$ !!$ # Fetch last parameter from last command | |
$ !!3 # Fetch third parameter from last command |
NewerOlder