|
|
|
|
|
by rascul
1513 days ago
|
|
> Bash saves them but truncates them to 500 entries That behavior can be modified with the HISTSIZE environment variable. > The maximum number of commands to remember on the history list. 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. https://www.gnu.org/software/bash/manual/html_node/Bash-Vari... |
|