mirror of
				https://github.com/kastdeur/dotfiles.git
				synced 2025-10-31 03:06:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			311 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			311 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # ~/.bash_profile
 | |
| [ -z "$DOTFILES" ] && source "$HOME/.profile"
 | |
| 
 | |
| [ -r "$HOME/.bash_profile.local" ] && source "$HOME/.bash_profile.local"
 | |
| 
 | |
| if shopt -q login_shell
 | |
| then
 | |
| # This is a bash login shell
 | |
| 	LOGINHISTORY=~/.login.history
 | |
| 	LOGINSTRING="$(date) ${USER}@${HOSTNAME}"
 | |
| 
 | |
| 	echo $LOGINSTRING > $LOGINHISTORY 
 | |
| fi
 |