15 lines
		
	
	
		
			201 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			201 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| #
 | |
| # ~/.bashrc
 | |
| #
 | |
| 
 | |
| # If not running interactively, don't do anything
 | |
| [[ $- != *i* ]] && return
 | |
| 
 | |
| # Source .profile
 | |
| if [ -r ~/.profile ]; then
 | |
| 	# shellcheck disable=1090
 | |
| 	source ~/.profile
 | |
| fi
 | |
| 
 |