view .profile-zsh @ 190:9497813bbdcf

docker-compose ist kein separates Binary mehr, sondern kommt als Teil der Docker Kommandozeile
author Dirk Olmes <dirk.olmes@codedo.de>
date Fri, 20 Jun 2025 08:21:24 +0200
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