]> git.pld-linux.org Git - packages/bash.git/blob - bashrc
- missing export
[packages/bash.git] / bashrc
1 # /etc/bashrc
2
3 # System wide functions and aliases
4 # Environment stuff goes in /etc/profile
5
6 # We set PS1 for each terminal:
7 case $TERM in
8         gnome|xterm*|rxvt)
9                 PS1="\[\033]0;\u@\h: \w\007\][\u@\h \W]\\$ "
10                 ;;
11         *)
12                 PS1="[\u@\h \W]\\$ "
13                 ;;
14 esac
15 export PS1
16
17 alias which="type -p"
18
19 # SYSTEM WIDE ALIASES ETC.
20 for i in `find /etc/shrc.d -name '*.sh'` ; do
21         . $i
22 done
23 unset i
24
25 stty erase `tput kbs`
This page took 0.046112 seconds and 4 git commands to generate.