]> git.pld-linux.org Git - packages/bash.git/blob - bashrc
f6f8d8bf9bdf907b1840e2f9c033caaddb6e5a8b
[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
16 alias which="type -p"
17
18 # SYSTEM WIDE ALIASES ETC.
19 for i in `find /etc/shrc.d -name '*.sh'` ; do
20         . $i
21 done
22 unset i
23
24 stty erase `tput kbs`
This page took 0.136534 seconds and 2 git commands to generate.