view .profile-zsh @ 162:0bd8976bd5fb

add default aliases for gk and removeKernel
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 09 Jan 2020 13:03:20 +0100
parents d0cdc3f47182
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