附录 L. 历史命令

Bash shell 提供了命令行工具,用于编辑和操作用户的命令历史。 这主要是为了方便,一种节省按键的方式。

Bash 历史命令

  1. history

  2. fc

bash$ history
   1  mount /mnt/cdrom
    2  cd /mnt/cdrom
    3  ls
     ...
	      

与 Bash 历史命令相关的内部变量

  1. $HISTCMD

  2. $HISTCONTROL

  3. $HISTIGNORE

  4. $HISTFILE

  5. $HISTFILESIZE

  6. $HISTSIZE

  7. $HISTTIMEFORMAT (Bash, 版本 3.0 或更高版本)

  8. !!

  9. !$

  10. !#

  11. !N

  12. !-N

  13. !STRING

  14. !?STRING?

  15. ^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 中历史命令的使用进行了很好的介绍。