Bash Script That Prints A Number With Two Decimal Places

Heya! 👋 I love helping people, and one of the best ways I do this is by sharing my knowledge and experiences. My journey reflects the power of growth and transformation, and I’m here to document and share it with you.
I started as a pharmacist, practicing at a tertiary hospital in the Northern Region of Ghana. There, I saw firsthand the challenges in healthcare delivery and became fascinated by how technology could offer solutions. This sparked my interest in digital health, a field I believe holds the key to revolutionizing healthcare.
Determined to contribute, I taught myself programming, mastering tools like HTML, CSS, JavaScript, React, PHP, and more. But I craved deeper knowledge and practical experience. That’s when I joined the ALX Software Engineering program, which became a turning point. Spending over 70 hours a week learning, coding, and collaborating, I transitioned fully into tech.
Today, I am a Software Engineer and Digital Health Solutions Architect, building and contributing to innovative digital health solutions. I combine my healthcare expertise with technical skills to create impactful tools that solve real-world problems in health delivery.
Imposter syndrome has been part of my journey, but I’ve learned to embrace it as a sign of growth. Livestreaming my learning process, receiving feedback, and building in public have been crucial in overcoming self-doubt. Each experience has strengthened my belief in showing up, staying consistent, and growing through challenges.
Through this platform, I document my lessons, challenges, and successes to inspire and guide others—whether you’re transitioning careers, exploring digital health, or diving into software development.
I believe in accountability and the value of shared growth. Your feedback keeps me grounded and motivated to continue this journey. Let’s connect, learn, and grow together! 🚀
Another task that I had to tackle as part of the lessons on shell expansion in my ongoing ALX Software Engineering course was to write a bash script that prints a number with two decimal places.
Let's take a practical example and solve it to explain how to print a number with two decimal places.
Practical Example:
Write a script that prints a number with two decimal places, followed by a new line.
The number will be stored in the environment variable MYNUM
Up until this point, we had always relied on the echo command to display or print somethings to the screen. As such, upon reading this question, my intuition defaulted to using the echo command to perform the task.
Unfortunately, I learned too soon that the echo command prints out only whole numbers and doesn't print floats by default. This means that we need to rely on something else to help us print floats or decimal numbers to the screen.
The printf command is the saviour of the situation. This is a popular command in programming languages like C but the bash shell equally utilizes it for the same purpose.
Printf is able to let us determine the format of the output we want. Hence, in this case the printf command will help us to format the output to be in 2 decimal places.
How to format output with the printf command
Let's look at the normal synthax of the printf command.
printf options arguments
It may also be presented as
printf options [format specifiers] arguments
The format specifiers are what tells the printf command what the format of the output should be. They also point to the arguments and restricts the type or format of values the printf command takes in as arguments.
Examples of format specifiers that you are likely to use include
| Format specifier | Description |
|---|---|
| %d | decimal (integer) number (base 10) |
| %f | floating-point number |
| %i | integer number (base 10) |
| %o | octal number (base 8) |
| %x | hexadecimal number (base 16) |

