We compare the Bash, Zsh, and fish shells
Globbing
All three shells support the use of various placeholders (this is known as globbing or file name expansion) in file names. In all three shells, the question mark ?
stands for any letter. Bash also supports the following notation:
ls @(letter|readme).txt
This command only lists the letter.txt
and readme.txt
files. Zsh can do the same, but by default, it only requires the brackets to be specified:
ls (letter|readme).txt
Both shells also allow for more complex conditions inside the brackets.
Zsh also offers what are known as glob qualifiers, with which you can track down very specific file types. For example, ls *(-@)
lists all symbolic links that are currently orphaned.
Bash and Zsh can also manipulate strings. For example, ${var:4:2}
returns the fifth and sixth characters from the text in the variable var
. You can also use both to solve simple arithmetic problems. To add, say, 1
and 2
, use the following construct:
sum=$((1+2))
However, the functions for calculating and editing texts by no means offer the capabilities of specialist programs such as bc
, sed
, and awk
.
File Streams
All shells provide the ability to redirect output from and input to program(s) and link them using pipes:
ls -la | grep "readme" | more
As an alternative to the echo
command, all shells still offer the built-in printf
command, which writes variable contents to a text:
printf "Name: %s Age: %d" $name $age
As in the function of the same name from the C programming language, you put placeholders in at the right places, and the shell replaces them with the values from the variables.
Control Structures
Developers control the flow within a script using appropriate control structures and loops. However, each shell uses a slightly different syntax. Listing 1 shows an example of an if
query in Bash, Zsh, and fish.
Listing 1
if Queries
# Bash and Zsh if [[ $color == "red" ]]; then echo $color fi # Zsh if [[ $color == "red" ]] { echo $color } # Fish if test $color = red echo $color end
In addition to the keyword if
, all shells also provide a while
loop and a for
loop. Bash and Zsh even support two different notations of the for
loop. However, the control structures and loops that are offered also differ between the shells. For example, Bash and Zsh still offer an until
loop, which is missing in fish.
Zsh is the only shell that offers a repeat
loop, which repeats a given number of commands. Bash and Zsh also have a select
loop that creates a simply designed menu for a selection.
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
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.