# /etc/profile: system-wide profile file for the shell

PATH=/sbin:/bin:/usr/sbin:/usr/bin:/var/bin

# set PATH so it includes user's private bin if it exists
if [ -d "/usr/local/bin" ]; then
	PATH="/usr/local/bin:$PATH"
fi

TERM=linux

PS1='[\h] \w \$ '

alias l='ls -al'
alias ll='ls -l'
alias dir='ls -lA'
alias ..='cd ..'
alias mc='mc -a'
alias sc='setconsole'
alias sr='setconsole -r'

# add user's private modifications if it exists
if [ -e /var/etc/profile.local ]; then
	. /var/etc/profile.local
elif [ -e /etc/profile.local ]; then
	. /etc/profile.local
fi