• 29 August

    Bash Replace Space with Newline

    If you have multiple consecutive spaces in the string, use the last solution, the for loop. You can use any of the following solutions if you have a multiline string. Using tr Command Use the tr command to replace space with newline in bash. [crayon-68b3e75805e51283095130/] [crayon-68b3e75805e6b011190326/] We initialized the text variable with a sample string. […]

  • 26 November

    Check If File Contains String in Bash

    1. Overview Searching for strings in text files is a common task in bash, used in scenarios like log file analysis and configuration file searches. This article explores various methods to check if file contains String, including both case-sensitive and case-insensitive approaches. 2. Introduction to Problem Statement Let’s consider a log file named server.log: [crayon-68b3e75806b5b084529271/] […]

  • Bash Check if Output contains String
    20 August

    Check If Output Contains String in Bash

    1. Overview In this article, we will see how to check if output contains String in Bash using grep, Conditional Expressions, awk, sed commands with various options. 2. Introduction to Problem Statement We will use ls -l to list directories and files in long format and search for .txt string in the output. For example: […]

  • Bash Check if two files are same
    02 August

    Check if Two Files are the Same in Bash

    In this entire article, we will use the following content of three different text files to practice the provided solutions. [crayon-68b3e75807d6e940675629/] [crayon-68b3e75807d75028717333/] [crayon-68b3e75807d77170241606/] Using cmp Command Use the cmp command to check if two files are the same in Bash. [crayon-68b3e75807d79139006350/] [crayon-68b3e75807d7a299967928/] In the above example, we initialized the file1 and file2 variables with the […]

  • Bash get last line of output
    02 August

    Get Last Line of Output in Bash

    1. Overview In this article, we will see how to get last line of output in Bash using tail, awk, sed, mapfile, and head commands with various options. 2. Introduction to Problem Statement We will use ls -l to list directories and files in long format and get the last line of output using various […]

  • Bash Check if boolean is true
    02 August

    Check If Boolean Is True in Bash

    Using if Statement We can use an if statement with different variations to determine whether the provided Boolean variable is true. Note that the examples covered in this section will be similar. We will learn the first example in Use if with true Condition in detail, but later, we will discuss the section which will […]

  • Bash check if host is reachable
    02 August

    Check If Host Is Reachable in Bash

    Using ping Command Use the ping command in bash to check if the host is reachable or not. [crayon-68b3e75808bc2419127852/] [crayon-68b3e75808bc8232382839/] In this bash script, the ping command is used to check if the host "example.com" is reachable or not. In bash, the ping command is used to send ICMP Echo Request packets to the given […]

  • Bash Set output of command to variable
    29 July

    Set Output of Command to Variable in Bash

    Using Substitution Syntax Use substitution syntax to capture the output of a single command into a variable in Bash. [crayon-68b3e75808ea0020819813/] [crayon-68b3e75808ea6013761103/] We used the date command to get the current date and time. The date command was enclosed within the substitution syntax represented by the $(...), which we used to capture the output of the […]

  • Bash Convert Array to comma separated string
    28 July

    Convert Array to Comma Separated String in Bash

    Using printf Statement Use the printf statement to convert the array to a comma-separated string in Bash. [crayon-68b3e758092cb175357336/] [crayon-68b3e758092d2973773338/] We initialized an array containing string elements. Then, we used the printf statement to convert the specified array to a comma-separated string. How? The printf statement formatted and stored the elements of the array into the […]