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
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
CarbonOS: A New Linux Distro with a Focus on User Experience
CarbonOS is a brand new, built-from-scratch Linux distribution that uses the Gnome desktop and has a special feature that makes it appealing to all types of users.
-
Kubuntu Focus Announces XE Gen 2 Linux Laptop
Another Kubuntu-based laptop has arrived to be your next ultra-portable powerhouse with a Linux heart.
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.
-
openSUSE Leap 15.5 Beta Now Available
The final version of the Leap 15 series of openSUSE is available for beta testing and offers only new software versions.