Spotter-VM/basic/root/.bashrc

26 lines
457 B
Bash
Raw Normal View History

2017-06-29 11:38:48 +02:00
shopt -s histappend
HISTSIZE=10000
HISTFILESIZE=20000
HISTTIMEFORMAT="(%F %T) "
PROMPT_COMMAND="history -a"
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\H:\w\a\]$PS1"
;;
*)
;;
esac
eval "`dircolors`"
COLOR="--color=auto"
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
alias ls='ls --color=auto'
alias ll='ls -la --color=auto'
alias l='ls -a --color=auto'
alias grep='grep --color=auto'