]> git.pld-linux.org Git - packages/bash.git/blame_incremental - bashrc
- there is no need to drop nxterm
[packages/bash.git] / bashrc
... / ...
CommitLineData
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
7case $TERM in
8 gnome|nxterm|xterm*|rxvt*)
9 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
10 ;;
11 *)
12 ;;
13esac
14PS1="[\u@\h \W]\\$ "
15
16alias which="type -p"
17
18# SYSTEM WIDE ALIASES ETC.
19if [ "$(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
24fi
This page took 0.031254 seconds and 4 git commands to generate.