1
0
mirror of https://github.com/danbee/mac-setup synced 2025-03-04 08:39:10 +00:00
mac-setup/lib/shell.sh
2019-04-23 08:57:56 -04:00

10 lines
187 B
Bash
Executable File

#!/bin/sh
SHELL_PATH=$(command -v zsh)
if ! grep "$SHELL_PATH" /etc/shells > /dev/null 2>&1 ; then
sudo sh -c "echo $SHELL_PATH >> /etc/shells"
fi
sudo chsh -s "$SHELL_PATH" "$USER"