You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
566 B
27 lines
566 B
# /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
|
|
|