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
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.