Prepare calculations and chart results with Bash Math, Shell Style
Tutorials – Shell Math

While Bash is not the most advanced environment for doing and visualizing math, its power will surprise you. Learn how to calculate and display your results with shell scripts.
In this series' previous installments on Bash scripting [1, 2, 3, 4], I have explained how to use data structures, flow control commands, and testing operators. Now, I will show you how to handle number-related tasks with shell scripts.
Before getting started, I want to discuss the strengths and weaknesses of doing math inside shell scripts.
Bash cannot do floating-point math or plotting. As for speed, fast calculations of any kind have never been a selling point of Unix shells. When it comes to performance, there have been many, much better solutions since before C and Fortran. Today, with the right libraries, even other scripting languages are better choices if raw execution speed is your main requirement.
The same applies to interactivity and user interfaces, especially when your want to quickly visualize how changing some input data or formula impacts a math function or changes the solution to some problem. If this is what you need, a LibreOffice spreadsheet or tools like Genius [5] or Graph [6], for actually studying math, may be much more effective solutions.
The real strengths of doing calculations in a shell script are "human efficiency" and "glue logic." While a shell script will most likely run slower than equivalent code in other languages, writing that code as a Bash script will very likely be faster. Run-time performance only really matters with code that you must run many times, possibly every day.
For an average desktop user, however, most problems that require writing code will be one-off issues, different enough from each other to require different code each time. In all those cases, getting working code quickly saves much more human time than writing the fastest possible code. Shell scripts are made to order for this kind of need, even when number-crunching is required.
Efficiency is even greater when you consider what I call the shell script's glue logic. Shell scripts are born as all-purpose tools that can easily launch, and connect with pipes, any other command-line program. Consider any problem spread across different areas, such as file management and actual numeric calculations of any kind: If you can quickly implement the complete solution as one script, what you gain in implementation time and self-documentation greatly outweighs what you may lose in raw performance.
Variables
One of shell scripts' advantages is that you do not need to explicitly declare the variable type. At the same time, the Bash interpreter has native support only for integer arithmetic. Therefore, the first best practice to deal with numeric variables is to explicitly declare their nature with the -i
(integer) switch:
declare -i MYCOUNTER=10
This will reduce the possibility of unnoticed errors, because the script will abort if you try to assign to $MYCOUNTER
any value that is not an integer number. For the same reason, you should really declare as read-only all the numeric constants you want to use:
declare -r TIMEOUTVALUE=100
Operators
Integer arithmetic's basic operations are supported with the same operators you would use in calculations done by hand, with the same relative precedences: first exponentiation (**
), then multiplication (*
) and division (/
), sum and subtraction, and finally remainder or modulo (%
):
X=8 X=$(( $X / 2 )) Y=3 Z=$(( X ** Y )) Q=$(( Z % 5 ))
In the example above, Z
would be equal to 64, and Q
to four, which is exactly the remainder of 64 divided by five. The modulo operator is often used to determine whether a number is odd or even. Other essential operators are those for automatic increment or decrement, which have the highest precedence of all:
X=4 echo $(( X++ )) echo $X
The first echo command would print 4, and the second would print 5. This happens because the value of $X
is incremented by one unit, but only after passing its previous value to echo
. The automatic decrement operator ($X--
) works in the same way.
I already introduced the Bash syntax for arithmetic expressions in this series' first installment "Shell Variables", but here is a quick recap. The examples above use the most flexible syntax, the double parentheses. Inside the double parentheses, you can execute any mathematical expression with or without spaces and use all variants of all operators. If you prefer (or simply want to copy code from older scripts), however, you can also evaluate arithmetic expressions with the let
and expr
keywords. Both of these commands:
let "X /= 2" X=`expr $X / 2`
divide by two the current value of X
.
Floating-point Math with bc
The Bash interpreter has no built-in commands to handle floating-point calculations or complex mathematical functions like those for trigonometry. In practice, this has never been a problem, thanks to the command-line, script-ready calculator (and language) known as bc
.
bc
supports arbitrary precision numbers, for which you can separately define both "length" and "scale." The bc
man page [7] defines length as "the total number of significant decimal digits in a number." The scale, instead, is the total number of decimal digits after the decimal point.
When you tell it to load its math library with the -l
option, bc
can use functions like c(x)
, l(x)
and sqrt (x)
to calculate cosine, natural logarithm and the square root of x
respectively. bc
can be used interactively at the prompt, but what makes it really powerful is the capability to load code from files or standard input. In the first case, bc
executes code from all the files passed to it in the order they are listed one line at a time. In the second case, you can pipe to bc
one or more lines of code generated on the fly, according to the current values of some variables, as in this small example:
#> Y=55 #> X=`echo "scale=8; c($Y/39)" | bc -l` #> echo $X .15985120
A common, quick-and-dirty usage of bc
in Bash scripts is to round up decimal numbers to the lower, or higher integer, as shown here:
X=4.5 echo "($X + 0.5)/1" | bc 5 echo "($X + 0.49)/1" | bc 4 X=4.51 echo "($X + 0.49)/1" | bc 5
These examples also highlight that you should be careful with the rounding value. bc
's internal programming language supports internal variables and arrays and comments in the same syntax as the C language:
/* any text between these characters is a comment */
It also supports control flow structures and print statements. Due to space constraints, I can't cover the language in more detail here. However, it is simple and similar enough to Bash that if you have already mastered the previous installments of this series, it will not be a problem for you (also see the detailed bc
man page [7]).
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
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta 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.