Guest User

Untitled

a guest
Feb 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. sudo apt-add-repository ppa:fish-shell/release-2
  2.  
  3. sudo apt-get update
  4.  
  5. sudo apt-get install fish
  6.  
  7. chsh -s /usr/bin/fish
  8.  
  9. curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisherman
  10.  
  11. curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
  12.  
  13. brew install fish
  14.  
  15. wget http://download.opensuse.org/repositories/shells:fish:release:2/Debian_8.0/Release.key
  16. apt-key add - < Release.key
  17. echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_8.0/ /' >> /etc/apt/sources.list.d/fish.list
  18. apt-get update
  19. apt-get install fish
  20.  
  21. sudo apt-add-repository ppa:fish-shell/release-2
  22. sudo apt-get update
  23. sudo apt-get install fish
  24.  
  25. cd /etc/yum.repos.d/
  26. wget http://download.opensuse.org/repositories/shells:fish:release:2/CentOS_7/shells:fish:release:2.repo
  27. yum install fish
  28.  
  29. cd /etc/yum.repos.d/
  30. wget http://download.opensuse.org/repositories/shells:fish:release:2/Fedora_23/shells:fish:release:2.repo
  31. yum install fish
  32.  
  33. pacman -S fish
  34.  
  35. emerge fish
  36.  
  37. sudo apt-get -y install git gettext automake autoconf
  38. ncurses-dev build-essential libncurses5-dev
  39.  
  40. git clone -q --depth 1 https://github.com/fish-shell/fish-shell
  41. cd fish-shell
  42. autoreconf && ./configure
  43. make && sudo make install
  44.  
  45. echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
  46. chsh -s /usr/local/bin/fish
  47.  
  48. curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisherman
Add Comment
Please, Sign In to add comment