Skip to main content

Install Fish Shell on Mac OS X and Ubuntu

Install Fish Shell on Mac OS X and Ubuntu

The Fish shell goes where few command-line shells have gone before, shedding its forebearers’ POSIX baggage in favor of simplicity, consistency, and ease-of-use. Much like the Mac creators thought computers should be made to understand how humans work (and not the other way around), Fish observes your past behavior and suggests commands that it thinks you might be trying to execute. Sometimes, those suggestions are so spot-on that it can be downright spooky. Reactions of “How did Fish know that’s what I wanted to do?” are not uncommon.
In this article, we’re going to show how to install the Fish shell on Mac OS X and Ubuntu, followed by some basic setup steps. Subsequent posts will cover more advanced configuration.
So can a command-line shell be Mac-like? Let’s find out.

What is Fish and why would someone use it instead of another shell?

Fish has a number of advantages over other shells:
  • Fish suggests commands as you type based on history and completions, just like a web browser’s search bar
  • Fish generates completions automatically by parsing your installed man pages
  • Fish has a more intuitive syntax
  • Fish has less historical baggage and technical debt
For additional background information, read:

Installing Fish on Mac OS X 10.10 Yosemite

There are several ways to install Fish on Mac OS X:
  • traditional .pkg installer
  • standalone Mac application
  • Homebrew
  • manual compilation
The first two options are available from the Fish web site and are straightforward enough to be considered self-explanatory.
That said, if you already use Homebrew (which I recommend) and have configured your environment as noted in the Mac OS X Setup Guide, then you can install Fish as you would any other package:
brew install fish
If you would prefer to install the latest bleeding-edge version of Fish via Homebrew, run the following instead of the above command:
brew install --HEAD fish
Once installation has completed, add Fish to /etc/shells, which will require an administrative password:
echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
To make Fish your default shell:
chsh -s /usr/local/bin/fish
Now that Fish is installed, you can proceed to the Basic Configuration section below.

Install latest Fish on Mac OS X from source

If you want to use the latest bleeding-edge version of Fish and already have Xcode installed, use the following steps to install from source:
git clone https://github.com/fish-shell/fish-shell ~/src/fish
cd ~/src/fish
xcodebuild install
ditto /tmp/fish.dst /
Add Fish to /etc/shells, which will require an administrative password:
echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
Make Fish your default shell:
chsh -s /usr/local/bin/fish
Now that Fish is installed, you can proceed to the Basic Configuration section below.

Installing Fish on Ubuntu

On Ubuntu, the easiest way to keep up-to-date is via the offical PPA. If you prefer to install via .deb package, or if you want to install the bleeding-edge version of Fish from source, those instructions are further below.

Install Fish via PPA

The following steps will add the Fish 2.x PPA repository and install Fish:
sudo apt-add-repository ppa:fish-shell/release-2
sudo apt-get update
sudo apt-get install fish
Make Fish your default shell:
chsh -s /usr/bin/fish
Now that Fish is installed, you can proceed to the Basic Configuration section below.

Install Fish on Ubuntu via .deb

The following steps are for the 64-bit version of Ubuntu 14.04 LTS (“Trusty”). If you are using a different version of Ubuntu, you’ll need to retrieve an appropriate .deb package from LaunchPad.
First retrieve and then install the .deb package:
wget https://launchpad.net/~fish-shell/+archive/ubuntu/release-2/+files/fish_2.2.0-1%7Etrusty_amd64.deb
sudo dpkg -i fish_2.2.0-1~trusty_amd64.deb
Make Fish your default shell:
chsh -s /usr/bin/fish
Now that Fish is installed, you can proceed to the Basic Configuration section below.

Install bleeding-edge Fish via PPA

If you prefer, you can keep up-to-date with the bleeding-edge version of Fish via the nightly build PPA. To do so, add the nightly PPA and install Fish:
sudo add-apt-repository ppa:fish-shell/nightly-master
sudo apt-get update
sudo apt-get install fish
Make Fish your default shell:
chsh -s /usr/bin/fish
Now that Fish is installed, you can proceed to the Basic Configuration section below.

Install Fish on Ubuntu from source

Install dependencies:
sudo aptitude install build-essential git autoconf libncurses5-dev libncursesw5-dev gettext
Retrieve source, compile, and install:
mkdir -p ~/src
git clone https://github.com/fish-shell/fish-shell ~/src/fish
cd ~/src/fish
autoconf
./configure --without-xsel
make
sudo make install
Add Fish to /etc/shells:
echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
Make Fish your default shell:
chsh -s /usr/local/bin/fish
Now that Fish is installed, it’s time for some basic configuration.

Basic configuration

The Fish shell should now be installed, but a bit more configuration will prove helpful later.
Create the Fish config directory:
mkdir -p ~/.config/fish
Create initial config file:
vim ~/.config/fish/config.fish
Initial config file contents, which adds /usr/local/bin to the PATH environment variable:
set -g -x PATH /usr/local/bin $PATH
Open a new terminal session, which should now load the Fish shell by default for the first time. You can enter help, followed by the return key, to load user documentation in your default browser.
You can also see your current configuration in your default browser by first entering this command:
fish_config
… and then visiting http://localhost:8000/ in your browser of choice.
Fish can parse your installed man pages and automatically generate completion files for your command-line tools. You should periodically run the following command to update those completions, which are stored in ~/.config/fish/completions by default:
fish_update_completions
Last but not least, running:
echo "set -g -x fish_greeting ''" >> ~/.config/fish/config.fish
… will eliminate the Fish welcome message that appears by default. If you want to add your own custom welcome message instead of removing the message entirely, insert your preferred text inside the '' marks.

Getting back to Bash

If you want to temporarily switch to the Bash shell for a single session, run:
bash
When you are done with your Bash session, type exit to return to your Fish shell.
If you decide Fish isn’t for you and want to permanently revert your default shell back to Bash:
chsh -s /bin/bash
… will switch your default shell to Bash.

Taking it to the next level

With Fish as your default shell, you may find that customizations you’ve made to your Bash environment are not present in Fish. The good news is that it’s easy to re-create those customizations — and create new enhancements — via Tacklebox, which allows you to easily use community-curated modules, plugins, and themes so you don’t have to create them yourself.
I look forward to continuing the conversation on Twitter.

Comments

Popular posts from this blog

sxhkd volume andbrightness config for dwm on void

xbps-install  sxhkd ------------ mkdir .config/sxhkd cd .config/sxhkd nano/vim sxhkdrc -------------------------------- XF86AudioRaiseVolume         amixer -c 1 -- sset Master 2db+ XF86AudioLowerVolume         amixer -c 1 -- sset Master 2db- XF86AudioMute         amixer -c 1 -- sset Master toggle alt + shift + Escape         pkill -USR1 -x sxhkd XF86MonBrightnessUp          xbacklight -inc 20 XF86MonBrightnessDown          xbacklight -dec 20 ------------------------------------------------------------- amixer -c card_no -- sset Interface volume run alsamixer to find card no and interface names xbps-install -S git git clone https://git.suckless.org/dwm xbps-install -S base-devel libX11-devel libXft-devel libXinerama-devel  vim config.mk # FREETYPEINC = ${X11INC}/freetype2 #comment for non-bsd make clean install   cp config.def.h config.h vim config.h xbps-install -S font-symbola #for emoji on statusbar support     void audio config xbps-i

Hidden Wiki

Welcome to The Hidden Wiki New hidden wiki url 2015 http://zqktlwi4fecvo6ri.onion Add it to bookmarks and spread it!!! Editor's picks Bored? Pick a random page from the article index and replace one of these slots with it. The Matrix - Very nice to read. How to Exit the Matrix - Learn how to Protect yourself and your rights, online and off. Verifying PGP signatures - A short and simple how-to guide. In Praise Of Hawala - Anonymous informal value transfer system. Volunteer Here are five different things that you can help us out with. Plunder other hidden service lists for links and place them here! File the SnapBBSIndex links wherever they go. Set external links to HTTPS where available, good certificate, and same content. Care to start recording onionland's history? Check out Onionland's Museum Perform Dead Services Duties. Introduction Points Ahmia.fi - Clearnet search engine for Tor Hidden Services (allows you

download office 2021 and activate

get office from here  https://tb.rg-adguard.net/public.php open powershell as admin (win+x and a ) type cmd  goto insall dir 1.         cd /d %ProgramFiles(x86)%\Microsoft Office\Office16 2.           cd /d %ProgramFiles%\Microsoft Office\Office16 try 1 or 2 depending on installation  install volume license  for /f %x in ('dir /b ..\root\Licenses16\ProPlus2021VL_KMS*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%x" activate using kms cscript ospp.vbs /setprt:1688 cscript ospp.vbs /unpkey:6F7TH >nul cscript ospp.vbs /inpkey:FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH cscript ospp.vbs /sethst:s8.uk.to cscript ospp.vbs /act Automatic script (windefender may block it) ------------------------------------------------------------------------------------------------------------------- @echo off title Activate Microsoft Office 2021 (ALL versions) for FREE - MSGuides.com&cls&echo =====================================================================================&