You've already forked personal-linux-config
							
							
		
			
				
	
	
		
			10 lines
		
	
	
		
			261 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			261 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# append to the history file, don't overwrite it
 | 
						|
shopt -s histappend
 | 
						|
 | 
						|
# don't put duplicate lines or lines starting with space in the history
 | 
						|
HISTCONTROL=ignoreboth
 | 
						|
 | 
						|
# create unlimited history in memory/storage (more effective grepping)
 | 
						|
HISTSIZE=
 | 
						|
HISTFILESIZE=
 |