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 39 Beta is 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.
-
Star Labs Reveals a New Surface-Like Linux Tablet
If you've ever wanted a tablet that rivals the MS Surface, you're in luck as Star Labs has created such a device.
-
SUSE Going Private (Again)
The company behind SUSE Linux Enterprise, Rancher, and NeuVector recently announced that Marcel LUX III SARL (Marcel), its majority shareholder, intends to delist it from the Frankfurt Stock Exchange by way of a merger.