view profile @ 157:ca7dbc6c6aae

add an alias to go directly to the exentra sources
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 27 Sep 2019 10:54:49 +0200
parents a7654f2b4170
children
line wrap: on
line source

#
# Use this as .profile on systems where the default shell cannot be changed to zsh
#
if [ ! -z "$SSH_TTY" ]; then
	# this is an interactive shell, replace the current shell with a zsh
    if [ -f /bin/zsh ]; then
        export SHELL=/bin/zsh
        exec /bin/zsh -l
    fi
fi