20 lines
		
	
	
		
			326 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			326 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright (C) 2004  Gabriel Ebner
 | 
						|
 | 
						|
. ~/.commonshrc
 | 
						|
 | 
						|
if [[ $- != *i* ]]; then
 | 
						|
	# Shell is non-interactive.  Be done now
 | 
						|
	return
 | 
						|
fi
 | 
						|
 | 
						|
HISTCONTROL=erasedups
 | 
						|
HISTFILESIZE=10000
 | 
						|
HISTSIZE=10000
 | 
						|
 | 
						|
PS1='\u@\h:\w\$ '
 | 
						|
 | 
						|
# Bash completion
 | 
						|
for i in /etc/profile.d/bash-completion /etc/bash_completion; do
 | 
						|
	test -f $i && . $i && break
 | 
						|
done
 |