]> git.pld-linux.org Git - packages/bash.git/blob - bashrc
- there is no need to drop nxterm
[packages/bash.git] / bashrc
1 # /etc/bashrc
2
3 # System wide functions and aliases
4 # Environment stuff goes in /etc/profile
5
6 # If this is an xterm set the title to user@host:dir
7 case $TERM in
8         gnome|nxterm|xterm*|rxvt*)
9                 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
10                 ;;
11         *)
12                 ;;
13 esac
14 PS1="[\u@\h \W]\\$ "
15
16 alias which="type -p"
17
18 # SYSTEM WIDE ALIASES ETC.
19 if [ "$(echo /etc/shrc.d/*.sh)" != "/etc/shrc.d/*.sh" ]; then
20         for i in /etc/shrc.d/*.sh; do
21                 . $i
22         done
23         unset i
24 fi
This page took 0.047774 seconds and 4 git commands to generate.