Guide to Linux jq Command for JSON processing 1. Overview JSON is a widely used structured data format typically used in most modern APIs and data services. It’s particularly popular in web applications due to its lightweight nature and compatibility with Javascript. Unfortunately, shells such as Bash can’t interpret and… Continue Reading jq-command-json

Linux Commands – Repeat a Command n Times 1. Introduction Repeating a command is one of the most commonly used operations when working with Linux scripting. In this quick tutorial, we’ll present how to perform an operation n times using different approaches. 2. Using a for Loop Let’s start by defining a… Continue Reading repeat-command