6 lines
82 B
Bash
6 lines
82 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Install ZSH
|
||
|
sudo pkg install -y zsh
|
||
|
sudo chsh -s `which zsh` vagrant
|