Commit | Line | Data |
---|---|---|
1 | # | |
2 | # /etc/profile: system-wide defaults for bash(1) login shells | |
3 | # | |
4 | ||
5 | if [ "$UID" = "0" ]; then | |
6 | export PATH="/sbin:/usr/sbin:/opt/sbin:/bin:/usr/bin:/opt/bin" | |
7 | else | |
8 | export PATH="/bin:/usr/bin:/opt/bin" | |
9 | fi | |
10 | ||
11 | if [ ! -f ~/.inputrc ]; then | |
12 | export INPUTRC="/etc/inputrc" | |
13 | fi | |
14 | ||
15 | export LESSCHARSET="latin1" | |
16 | export LESS="-R" | |
17 | export CHARSET="ISO-8859-1" | |
18 | export PS1="\[\033[1m\]\\$ \[\033[0m\]" | |
19 | export PS2="\[\033[1m\]> \[\033[0m\]" | |
20 | ||
21 | umask 022 | |
22 | ||
23 | # End of file |