CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
prt-get: fixed release number to upstream
[ports/core-arm.git] / bash / profile
CommitLineData
21a7237e
VM
1#
2# /etc/profile: system-wide defaults for bash(1) login shells
3#
4
5if [ "$UID" = "0" ]; then
6 export PATH="/sbin:/usr/sbin:/opt/sbin:/bin:/usr/bin:/opt/bin"
7else
8 export PATH="/bin:/usr/bin:/opt/bin"
9fi
10
11if [ ! -f ~/.inputrc ]; then
12 export INPUTRC="/etc/inputrc"
13fi
14
15export LESSCHARSET="latin1"
16export LESS="-R"
17export CHARSET="ISO-8859-1"
18export PS1="\[\033[1m\]\\$ \[\033[0m\]"
19export PS2="\[\033[1m\]> \[\033[0m\]"
20
21umask 022
22
23# End of file