We compare the Bash, Zsh, and fish shells
Bash, fish, and Zsh
Although all three shells follow the Posix standard, only Bash officially follows it. Bash even comes with a corresponding mode that adheres even more strictly to the Posix specification and, for example, ignores Bash's own configuration files [5].
Command input in all three shells leans either on Emacs or vi. You will also find that they all support a multiline mode that lets you input commands that span several lines.
Bash, fish, and Zsh will colorize the individual components of a command, if so desired, and the color scheme can be customized. Fish even supports the use of up to 16.8 million colors. You can redesign the prompt structure in all three shells.
In Zsh, every action at the prompt executes a widget. For example, Esc+B calls a widget that lets you move the cursor to the beginning of the word. You can create your own widgets.
All three shells remember every command you input. You can use a keyboard shortcut to call up older commands from this history. By default, Zsh remembers only the last 30 lines and also discards the list on exiting. If necessary, you can change this setting so that all open shells share a history (see the section on configuring Zsh later in this article).
On request, Bash, fish, and Zsh will complete a partially typed command. Autocompletion is designed to complete the names of variables, users, hosts, and files. In all three shells, it is possible to add your own rules to this function.
Bash and Zsh also offer limited spellchecking, with the Zsh acting in a far more intelligent way. Bash, for example, only corrects file names after cd
, but Zsh also corrects misspelled program names and other misspellings. Fish, on the other hand, suggests a possible command from the history while typing and highlights (typing) errors in red.
String of Pearls
Variables are used to record data. In Bash or Zsh, you do this by defining, for example, color=red
, and in fish, you need the set
keyword for this purpose:
set color red
The equals sign between the name and the value is also missing in fish, which makes the two methods incompatible.
Bash, fish, and Zsh can all store multiple values in arrays. Depending on the variant, these arrays are internally called lists, fields, or vectors. An element in an array is accessed by specifying its position:
colors[1]=red
In both Bash and Zsh, the count starts at zero. In the example, the word red
would therefore be stored in position two in the colors
array. In contrast, fish starts at one, which would mean that red
is the first element in the array in the preceding example.
In addition, fish supports the ..
operator, which you can use to access multiple elements at once:
echo $colors[2..4]
In this example the colors at positions 2
, 3
, and 4
of the array would be output.
Substitution
All shells are capable of command substitution, which lets you substitute one command for another. In the following example, Bash and Zsh would first execute the date
command and then pass the returned value as a parameter to the mkdir
command:
mkdir $(date +"%Y-%m-%d")
In older code, you can often find the now obsolete notation with backticks `date +"%Y-%m-%d"`
. fish makes the code more readable. It does not support either variant but requires simple brackets:
mkdir (date +"%Y-%m-%d")
Using the same principle, shells integrate the contents of variables into texts. In Bash and Zsh, you put the variable in curly braces as follows:
ls letter${date}.txt
However, fish again does its own thing with slightly different syntax:
ls letter{$date}.txt
Bash, fish, and Zsh provide some predefined and special variables, but they differ from shell to shell. For example, Bash and Zsh users will find the first parameter passed to the script on the command line in the variable $1
. Fish, on the other hand, does not support a $1
variable, so you will need to extract all the transferred parameters from the $argv
array if needed.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.