欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

bash

程序员文章站 2022-07-14 13:33:07
...
unix - Unlimited Bash History - Stack Overflow
http://*.com/questions/9457233/unlimited-bash-history

Set HISTSIZE and HISTFILESIZE to an empty string:
HISTSIZE= HISTFILESIZE=

In bash 4.3 and later you can also use HISTSIZE=-1 HISTFILESIZE=-1:
n.  Setting HISTSIZE to a value less than zero causes the history list to be
    unlimited (setting it 0 zero disables the history list).

o.  Setting HISTFILESIZE to a value less than zero causes the history file size
    to be unlimited (setting it to 0 causes the history file to be truncated
    to zero size).