Bash shell 提供了命令行工具,用于编辑和操作用户的命令历史。 这主要是为了方便,一种节省按键的方式。
Bash 历史命令
history
fc
bash$ history 1 mount /mnt/cdrom 2 cd /mnt/cdrom 3 ls ... |
与 Bash 历史命令相关的内部变量
$HISTCMD
$HISTCONTROL
$HISTIGNORE
$HISTFILE
$HISTFILESIZE
$HISTSIZE
$HISTTIMEFORMAT (Bash, 版本 3.0 或更高版本)
!!
!$
!#
!N
!-N
!STRING
!?STRING?
^STRING^string^
不幸的是,Bash 历史工具在脚本编写中没有任何用处。
#!/bin/bash # history.sh # A (vain) attempt to use the 'history' command in a script. history # No output. var=$(history); echo "$var" # $var is empty. # History commands are, by default, disabled within a script. # However, as dhw points out, #+ set -o history #+ enables the history mechanism. set -o history var=$(history); echo "$var" # 1 var=$(history) |
bash$ ./history.sh (no output) |
Advancing in the Bash Shell 网站对 Bash 中历史命令的使用进行了很好的介绍。