Linux tips: Reset History size
Linux tips: Reset History size
// To display history size
# set | grep HIST
// Change HISTFILESIZE, HISTSIZE inside .bashrc
# cd ~/.bashrc
// Amend .bashrc
HISTFILESIZE=8000
HISTSIZE=8000
// Tested working on Linux Mint 18.3
// To display history size
# set | grep HIST
// Change HISTFILESIZE, HISTSIZE inside .bashrc
# cd ~/.bashrc
// Amend .bashrc
HISTFILESIZE=8000
HISTSIZE=8000
// Tested working on Linux Mint 18.3
Comments
Post a Comment