Created
March 25, 2020 20:27
-
-
Save estysdesu/1bd3167d24bfd493f8bd828c97bbf152 to your computer and use it in GitHub Desktop.
[Bash: History Expansion] #bash #hist #!!
This file contains 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
man -P 'less -p ^HISTORY\ EXPANSION' bash | |
##### GLOBS ##### | |
!^ # first argument | |
!$ # last argument | |
!* # all arguments | |
!:2 # second argument | |
!:2-3 # second to third arguments | |
!:2-$ # second to last arguments | |
!:2* # second to last arguments | |
!:2- # second to next to last arguments | |
!:0 # the command | |
!! # repeat the previous line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment