Merge pull request #45 from yx-ren/yx-ren/dev

add some event designators
pull/46/head
Linwei 5 years ago committed by GitHub
commit 76c3bb24fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -324,10 +324,14 @@ num=$((1 + (2 + 3) * 2)) # 复杂计算
!! # 上一条命令
!^ # 上一条命令的第一个单词
!:n # 上一条命令的第n个单词
!:n-$ # 上一条命令的第n个单词到最后一个单词
!$ # 上一条命令的最后一个单词
!-n:$ # 上n条命令的最后一个单词
!string # 最近一条包含string的命令
!^string1^string2 # 最近一条包含string1的命令, 快速替换string1为string2
!# # 本条命令之前所有的输入内容
!#:n # 本条命令之前的第n个单词, 快速备份cp /etc/passwd !#:1.bak
##############################################################################

Loading…
Cancel
Save