CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
wget: disabled rpath. Thanks j_v
[crossrootfs.git] / bash / profile
CommitLineData
6dca1d21
JB
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
6dca1d21 15export LESS="-R"
6dca1d21
JB
16export PS1="\[\033[1m\]\\$ \[\033[0m\]"
17export PS2="\[\033[1m\]> \[\033[0m\]"
18
19umask 022
20
21# End of file