]> git.pld-linux.org Git - packages/bash.git/blob - bashrc
707e427414b2019a715cc29d66e1c8f54dababde
[packages/bash.git] / bashrc
1 # /etc/bashrc
2
3 # System wide functions and aliases
4 # Environment stuff goes in /etc/profile
5
6 # For some unknown reason bash refuses to inherit
7 # PS1 in some circumstances that I can't figure out.
8 # Putting PS1 here ensures that it gets loaded every time.
9 PS1="[\u@\h \W]\\$ "
10
11 alias which="type -p"
12
13 for I in /etc/profile.d/*.sh ; do
14         if [ "`grep alias $I`" != "" ]; then
15                 . $I
16         fi
17 done
This page took 0.047077 seconds and 3 git commands to generate.