Skip to content

Instantly share code, notes, and snippets.

@blue-bird1
Forked from mamiu/install_fish_debian.sh
Last active October 9, 2018 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blue-bird1/4bb21b75c0b9110ba73ec190b5731ff6 to your computer and use it in GitHub Desktop.
Save blue-bird1/4bb21b75c0b9110ba73ec190b5731ff6 to your computer and use it in GitHub Desktop.
Install fish shell in Debian 8 (commands from the original fish shell website). #debian
#!/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