7 lines
186 B
Bash
Executable File
7 lines
186 B
Bash
Executable File
# Fail on any command.
|
|
set -eux pipefail
|
|
|
|
# Install ZSH
|
|
sudo apt install -y git-core zsh curl
|
|
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|