In this article, we will focus on how to do mathematical operations in bash…
Learn Shell scripting
- Bash scriptingBASHLinuxLinux BasicsLinux CommandsScriptingShell ScriptsUnix/Linux Beginners
Bash Scripting – Select Loop Explained With Examples
By KarthickBy Karthick 2k viewsThis guide explains what is Select loop in Bash scripting and how to use Bash select loop to create a menu-driven script with examples.
- Bash scriptingBASHBash TipsLinuxLinux CommandsScriptingShell ScriptsUnix/Linux Beginners
How To Parse CSV Files In Bash Scripts In Linux
By KarthickBy Karthick 14.8k viewsThis tutorial explains how to parse CSV files in Bash shell scripts using awk and sed utilities in Linux with examples.
- Bash scriptingBASHBash TipsLinuxLinux BasicsLinux CommandsLinux Tips & TricksScriptingShell ScriptsUnix/Linux Beginners
How To Create GUI Dialog Boxes In Bash Scripts With Zenity In Linux And Unix
By KarthickBy Karthick 14.6k viewsZenity is a rewrite of gdialog, the GNOME port of dialog which allows you to create GUI dialog boxes in Bash scripts in Linux, BSD and Windows.
- Bash scriptingBASHBash TipsLinuxLinux BasicsLinux CommandsLinux Tips & TricksScriptingShell ScriptsUnix/Linux Beginners
Bash Scripting – Case Statement
By KarthickBy Karthick 2.2k viewsThis guide explains what is Bash case statement and how to use case statement in Bash shell scripts with examples.
- Bash scriptingBASHBash TipsLinuxLinux BasicsLinux CommandsLinux Tips & TricksScriptingShell ScriptsUnix/Linux Beginners
Bash Scripting – Conditional Statements
By KarthickBy Karthick 10.9k viewsIn this guide, we will learn how to work with conditional statements in bash, how to use file test, integer, and string operators. And finally, we will discuss how to write compact conditional statements using logical AND and logical OR operators.
- Bash scriptingBASHBash TipsLinuxLinux AdministrationLinux BasicsLinux CommandsLinux Tips & TricksScriptingShell ScriptsUnix/Linux Beginners
Bash Scripting – String Manipulation
By KarthickBy Karthick 3.8k viewsString manipulation is one of the fundamental concepts of bash scripting. This guide explains how to create and manipulate strings in bash.
- Bash scriptingBASHLinuxLinux BasicsLinux CommandsLinux Tips & TricksScriptingShell ScriptsUnix/Linux Beginners
Bash Scripting – Printf Command Explained With Examples
By KarthickBy Karthick 5.9k viewsIn this article, I am going to explain the basic usage of the Bash…
- Bash scriptingBASHLinuxLinux BasicsLinux CommandsScriptingShell ScriptsUnix/Linux Beginners
Bash Scripting – While And Until Loop Explained With Examples
By KarthickBy Karthick 4.6k viewsBash supports three types of loops, namely for loop, while loop and until loop. In this guide, we will learn about while and until loops.