# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin"

PS1='\u@\h \w$ '
PS2='> '
PS3='? '
PS4='[$LINENO]+'

alias ll='ls -l'
alias la='ll -a'

EDITOR="/bin/vi"               # needed for packages like cron
TERM="xterm"                   # Basic terminal capab. For screen etc.
TERMINFO="/usr/share/terminfo" # For ncurses to work

export PATH

export PS1
export PS2
export PS3
export PS4

export EDITOR
export TERM
export TERMINFO
