1.方向键
方向上/下可以查看上一条/下一条执行命令
2.ctrl + p/n
ctrl + p/n #与方向上下键功能无异
3.history命令
linux的history命令的作用是,记录执行过的命令。
用法:
history n # n为数字,列出最近的n条命令
history -c # 将目前shell中的所有history命令消除
history [-raw] histfiles #-a/-r/-w 为参数, histfiles为路径
-a 将目前新增的命令写入histfiles, 默认写入~/.bash_history
-r 将histfiles内容读入到目前shell的history记忆中
-w 将目前history记忆的内容写入到histfiles
!的使用
使用
!number # number表示history 前列出的数字
可以执行指定序号的命令
!!
执行上一条命令
shell > !1046
history 3
1045 14-11-02 16:22:38 head ~/.bash_history
1046 14-11-02 16:35:37 history 3
1047 14-11-02 16:35:48 history 3
shell > !!
history 3
1046 14-11-02 16:35:37 history 3
1047 14-11-02 16:35:48 history 3
1048 14-11-02 16:35:52 history 3