annotate .profile-zsh @ 187:7d3c872681cb
more braucht jetzt eine Option, damit am Ende "rausgefallen" wird
author |
Dirk Olmes <dirk.olmes@codedo.de> |
date |
Tue, 14 Mar 2023 07:19:11 +0100 |
parents |
d0cdc3f47182 |
children |
|
rev |
line source |
105
|
1 #
|
|
2 # Use this as .profile on systems where the default shell cannot be changed to zsh
|
|
3 #
|
|
4 if [ ! -z "$SSH_TTY" ]; then
|
|
5 # this is an interactive shell, replace the current shell with a zsh
|
|
6 if [ -f /bin/zsh ]; then
|
|
7 export SHELL=/bin/zsh
|
|
8 exec /bin/zsh -l
|
|
9 fi
|
|
10 fi
|