etc/bashrc

20 lines
326 B
Bash
Raw Normal View History

# Copyright (C) 2004 Gabriel Ebner
2011-04-30 20:21:21 +02:00
. ~/.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