Skip to content

Instantly share code, notes, and snippets.

@4lberto
Created March 20, 2018 09:17
Show Gist options
  • Save 4lberto/af5feaa067ba6118607e476d3b377659 to your computer and use it in GitHub Desktop.
Save 4lberto/af5feaa067ba6118607e476d3b377659 to your computer and use it in GitHub Desktop.
#Checking the size
echo $HISTFILESIZE $HISTSIZE
#Chaning the size
HISTFILESIZE=10000000
HISTSIZE=10000000
#Later execute
echo $HISTFILESIZE $HISTSIZE
#should return
10000000 10000000
#Then apply to bash profile file:
HISTFILESIZE=10000000
HISTSIZE=10000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment