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
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.