Features of Fish shell
I know that the name is a bit funny – “Fish” shell! Don’t let the name fool you as it comes up with a ton of useful features. The main features include –
- Autosuggestion – When you start typing, you’ll see suggestion of the command line. We’ll get to it after the installation part is complete.
- Glorious colors – Fish shell supports 24-bit true color for making the terminal even more appealing.
- Works out of the box – You don’t have to configure Fish shell from the starting to enjoy it. Instead, all you need is just start enjoying the shell.
- Scripting – Fish shell supports easier scripting.
- “man” page completions – Fish shell automatically parses the existing “man” pages and presents them in a nice, charismatic way.
Installing Fish shell
It’s time to install the shell in our system. Let’s fire up the terminal!
Run the following command(s) according to your Linux distro.
- Ubuntu
- Debian
- Fedora
- CentOS
- OpenSUSE
- Arch Linux
- Guix
- Universal method
This method isn’t recommended as it requires compiling & installing from the source. Uninstalling the shell may be a difficulty in this case. For this method, download the latest version of Fish shell (compressed).
Extract the file in a folder:
Change the working directory and build Fish shell:
./configure
Install the software:
Switching to Fish shell
Now, it’s time to change the default shell of terminal. Run the following command:
Restart the terminal and behold the beautiful Fish shell!
Fish shell usage
There’s no basic difference between Fish and Bash shell. Everything is just as same.
The first main difference that will catch your eyes is the coloring. Fish shell is more colorful than the classic Bash shell. However, the coloring also depends a lot on the terminal settings for color. The highlighting is really useful.
Another awesome feature is the availability of the command. For example, if I type “/bin/linuxhint”, it’ll show the line in a red color, indicating that it’s not a valid command.
But if I type “/bin/bash”, it’ll look normal.
Another interesting feature is the suggestion bar. It remembers your usage pattern and can suggest you the right command at the right moment. Just press the → key when the suggestion appears.
These are all the basic features, but what about the others? If you want to go in-depth on Fish shell, you should give this online Fish shell playground a try. It comes up with a huge number of tutorials and other tricks.
Stay connected with linuxhint for more awesome tricks and tips!