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

Guide to the Linux find Command 1. Introduction The Linux https://en.wikipedia.org/wiki/Find(Unix)[find]_ command can be used to find files and directories on a disk. It provides several command-line options that make it a powerful tool. In this tutorial, we’ll look at how to use the find command. 2. Syntax Let’s quickly… Continue Reading find-command

Linux Commands – top 1. Overview It’s quite common to find ourselves in a situation where we need to know the resource usage of each process and thread in our system. For example, we might want to know which process is slowing down our system. In this tutorial, we’ll look… Continue Reading top-command