# ~/.profile

if [ "$PS1" ]; then

        PS1="\h% "
        EDITOR="vi"

        alias ls='ls -F'
        alias rm='rm -i'
        alias mv='mv -i'
        alias cp='cp -i'
fi

if [ -d ~/bin ] ; then
	PATH=~/bin:"${PATH}"
fi

if [ -d ~/man ]; then
	MANPATH=~/man${MANPATH:-:}
	export MANPATH
fi

export PATH MANPATH PS1 EDITOR

