9 lines
		
	
	
		
			193 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			193 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# if running bash
 | 
						|
if [ -n "$BASH_VERSION" ]; then
 | 
						|
    # include .bashrc if it exists
 | 
						|
    if [ -f "$HOME/.bashrc" ]; then
 | 
						|
        # shellcheck disable=SC1090
 | 
						|
        . "$HOME/.bashrc"
 | 
						|
    fi
 | 
						|
fi
 |