Last active
July 15, 2019 11:06
-
-
Save blue-bird1/2386182b84932e5553c96ed8ea68830c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
git clone https://github.com/fish-shell/fish-shell && cd fish-shell | |
mkdir build; cd build | |
sudo apt-get install -y cmake libreadline-dev libeditline-dev libbz2-dev libcurses-ocaml-dev | |
cmake .. -DCMAKE_INSTALL_PREFIX=/opt/fish | |
make | |
sudo make install | |
chsh -s /opt/fish/bin/fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment