]> git.ipfire.org Git - ipfire-3.x.git/blob - pkgs/core/bash/bashrc
Update openvpn to version 2.1rc20.
[ipfire-3.x.git] / pkgs / core / bash / bashrc
1 # Begin /etc/bashrc
2
3 # System wide aliases and functions.
4
5 # System wide environment variables and startup programs should go into
6 # /etc/profile. Personal environment variables and startup programs
7 # should go into ~/.bash_profile. Personal aliases and functions should
8 # go into ~/.bashrc
9
10 # Provides a colored /bin/ls command. Used in conjunction with code in
11 # /etc/profile.
12
13 alias ls='ls --color=auto'
14
15 # Provides prompt for non-login shells, specifically shells started
16 # in the X environment. [Review the LFS archive thread titled
17 # PS1 Environment Variable for a great case study behind this script
18 # addendum.]
19
20 export PS1="\033[0m[\033[1;33m\u\033[1;37m@\033[1;32m\]\h \033[1;31m\w\033[0m]\\$ "
21
22 # End /etc/bashrc