Last active
November 24, 2018 12:25
-
-
Save mamiu/c3c0ee8f4cf05030a72e to your computer and use it in GitHub Desktop.
Install fish shell in Debian 8 (commands from the original fish shell website).
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
#!/bin/bash | |
echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_8.0/ /' >> /etc/apt/sources.list.d/fish.list | |
apt-get update | |
wget -qO - http://download.opensuse.org/repositories/shells:fish:release:2/Debian_8.0/Release.key | apt-key add - | |
apt-get update | |
apt-get install -y fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment