summaryrefslogtreecommitdiff
path: root/install-files/essential-files/etc/profile
blob: 8409c1653e1c1791ce91303a710a92804b6943a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# /etc/profile

# Set our default path
PATH="usr/local/bin:/usr/bin"
export PATH

# Source global bash config
if test "$PS1" && test "$BASH" && test -r /etc/bash.bashrc; then
        . /etc/bash.bashrc
fi

# Set default pager to less
export MANPAGER='less -R'