blob: b306a132d6996fccbeaf4e09cd6a03a3cbe01b35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# /etc/profile
# Set our default path
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/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'
|