Skip to content

Instantly share code, notes, and snippets.

@oit63
Forked from mamiu/install_fish_debian.sh
Created April 1, 2018 14:03
Show Gist options
  • Save oit63/ac67e6b983bc62e2de85cfca302b35fe to your computer and use it in GitHub Desktop.
Save oit63/ac67e6b983bc62e2de85cfca302b35fe to your computer and use it in GitHub Desktop.
Install fish shell in Debian 8 (commands from the original fish shell website).
#!/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
@oit63
Copy link
Author

oit63 commented Apr 1, 2018

chsh -s $(which fish)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment