# This is a simple .profile which will fire up zsh.
# Location: $HOME/.profile

#ZSH="/usr/bin/zsh"
ZSH=`which zsh`

if [ -f $ZSH ]; then
    exec $ZSH -l
    export SHELL=$ZSH
fi
