我一直在观看一些有关 bash 和history
相关 bash 变量的视频。有一个 stackoverflow 问题链接这个视频那提到编辑.bash_history
。
我将 my 更改$HISTFILE
为 shell A 中的本地文件,并在第一行中更改cd
为ls
shell A 中的文件,然后我运行history
并看到cd
.
1 Sun 22/Dec/19 07:59:02 cd
2 Sun 22/Dec/19 07:59:12 view ~/.bash_profile
3 Sun 22/Dec/19 08:00:22 history 5
4 Sun 22/Dec/19 08:00:58 vim ~/.bash_profile
5 Sun 22/Dec/19 08:01:43 history 5
6 Sun 22/Dec/19 08:01:59 history 4
7 Sun 22/Dec/19 08:30:36 echo $HISTFILE
8 Sun 22/Dec/19 08:30:48 vim $HISTFILE
9 Sun 22/Dec/19 08:31:02 history
然后我打开shell B就跑了history
。这是命令的输出。新的 shell 将我的第一行更改为ls
.
1 Sun 22/Dec/19 07:59:02 ls
2 Sun 22/Dec/19 07:59:12 view ~/.bash_profile
3 Sun 22/Dec/19 08:00:22 history 5
4 Sun 22/Dec/19 08:00:58 vim ~/.bash_profile
5 Sun 22/Dec/19 08:01:43 history 5
6 Sun 22/Dec/19 08:01:59 history 4
7 Sun 22/Dec/19 08:31:19 history
那么bash
进程每次打开历史文件时都会将其加载到内存中吗?因此,如果一个非常大的$HISTFILE
,这不是一个很大的内存问题吗?
答案1
是的,它确实将其加载到内存中(来自man bash
):
启动时,历史记录从变量 HISTFILE 命名的文件(默认 ~/.bash_history)初始化。如有必要,由 HISTFILE 值命名的文件将被截断,以使其包含的行数不超过 HISTFILESIZE 值指定的行数。
是的,理论上这可能是一个问题,但现在大多数机器都有足够的内存来处理它。例如,我的 中有以下内容~/.profile
:
$ grep SIZE ~/.profile
export HISTSIZE=999999
export HISTFILESIZE=999999
这让我在我的历史记录中保留了 999999。到目前为止,我在这里:
$ history | wc
109207 637303 4614715
这给了我~/.bash_history
大约 3.7M 的文件大小:
$ ls -l ~/.bash_history
-rw-r--r-- 1 terdon terdon 3846502 Dec 21 18:15 /home/terdon/.bash_history
在我的 32G RAM 笔记本电脑上,这一点甚至还算不上明显。
无论如何,那只是我。我选择拥有丰富的历史记录,因此我可能会牺牲一点点速度来换取我所获得的优势。如果您不希望这样,您可以保留默认值(来自man bash
):
HISTFILESIZE
The maximum number of lines contained in the history file. When
this variable is assigned a value, the history file is trun‐
cated, if necessary, to contain no more than that number of
lines by removing the oldest entries. The history file is also
truncated to this size after writing it when a shell exits. If
the value is 0, the history file is truncated to zero size.
Non-numeric values and numeric values less than zero inhibit
truncation. The shell sets the default value to the value of
HISTSIZE after reading any startup files.
HISTSIZE
The number of commands to remember in the command history (see
HISTORY below). If the value is 0, commands are not saved in
the history list. Numeric values less than zero result in every
command being saved on the history list (there is no limit).
The shell sets the default value to 500 after reading any
startup files.
因此,默认大小仅为 500 个命令,这在当今的计算机上确实可以忽略不计。如果这太多了,您可以随时将其设置得更低。