This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set these as you see fit. | |
# Neither of them can be set to an "infinite"/unlimited value, but you can | |
# set them to a "high enough" value that you'll never reach. | |
HISTSIZE=110000000 | |
SAVEHIST=100000000 | |
export HISTSIZE SAVEHIST | |
# The following function sets up history management in a way that each shell's | |
# history is saved into separate files and they are archived into monthly files. | |
# This prevents accidental loss of history entries. |