history命令
1.
history [num]
2.
!! 执行上一条命令
Ctrl + P 显示上一条命令
!-[num] 回到计数倒数第[num条命令] (num最小从1开始)
!! = !-1 = ctrl + p
3.
![command] 搜索history中的上一条带command的记录
例如
cd /
cd ~
!cd 结果为cd ~
4.
mkdir test
cd !!:$ cd进入上一条命令的参数部分
mkdir test1
!!:s/test1/test 意思是search for /test1/ and replace test2