summaryrefslogtreecommitdiff
path: root/install-files/essential-files/etc/profile
blob: 5c0a13313b63a7e414c8544659f279a27e80c582 (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'