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.
16 lines
342 B
16 lines
342 B
# /etc/profile: system-wide profile file for the shell
|
|
|
|
PATH=/sbin:/bin:/usr/bin:/var/bin
|
|
TERM=linux
|
|
|
|
PS1='[\h] \w \$ '
|
|
|
|
alias l='ls -al'
|
|
alias ll='ls -l'
|
|
alias dir='ls -lA'
|
|
alias ..='cd ..'
|
|
alias sc='setconsole'
|
|
alias sr='setconsole -r'
|
|
|
|
# Add your own modifications to /etc/profile.local!
|
|
test -e /etc/profile.local && . /etc/profile.local
|
|
|