How To Parse CSV Files In Bash Scripts In Linux
Comma-separated values aka CSV is a semi-structured data that uses comma as the delimiter to separate the words. CSV file formats are very popular among data professionals since they have …
Linux Howto’s for System Administrations
linuxhowto.net AI Version 0.8
Comma-separated values aka CSV is a semi-structured data that uses comma as the delimiter to separate the words. CSV file formats are very popular among data professionals since they have …
A while ago, we briefly discussed about Zenity, a simple program that allows you to create graphical (GTK+) dialog boxes in command-line and shell scripts. In this article, we are …
When I started writing bash scripts, I realized that one operation I am often dealing with every script is handling date and time. I have done many operations like naming …
Have you ever unknowingly executed a command with a typo in it? Well, you can simply hit the UP/DOWN arrow to bring up the command history, find the misspelled command, …
Debugging helps you to fix the errors in your program. In this article, we will discuss various methods to debug bash scripts in Linux and Unix operating systems. Introduction In …
Passing arguments to a program is one of the common operations across any language you use. Similarly, in this article, we are going to see how to parse arguments in …
When it comes to bash scripting, all the scripts are mainly focused on the command-line operation. Whether you need input from the user or display some messages, everything is done …
In the previous article, we have seen how to work with conditional statements in bash to evaluate conditions and take decisions based on the results. Similarly, in this article, we …
In this guide, we will learn the usage of conditional statements in Bash scripting with examples. Decision-making is an important step in programming. There may be a situation where certain …
String manipulation one of the fundamental concepts of bash scripting. In programming, strings are one of the data types which are an ordered sequence of characters. It is important that …