You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			Bash
		
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# if running bash
 | 
						|
if [ -n "$BASH_VERSION" ]; then
 | 
						|
    # include .bashrc if it exists
 | 
						|
    if [ -f "$HOME/.bashrc" ]; then
 | 
						|
        . "$HOME/.bashrc"
 | 
						|
    fi
 | 
						|
fi
 | 
						|
 | 
						|
export LANGUAGE="en_US:en"
 | 
						|
export LC_MESSAGES="en_US.UTF-8"
 | 
						|
export LC_CTYPE="en_US.UTF-8"
 | 
						|
export LC_COLLATE="en_US.UTF-8"
 | 
						|
 | 
						|
# Load RVM into a shell session *as a function*
 | 
						|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
 | 
						|
 |