• 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-66298df57fed2604157943/] [crayon-66298df57fedc846287908/] [crayon-66298df57fedd694446942/] Using cmp Command Use the cmp command to check if two files are the same in Bash. [crayon-66298df57fedf056488409/] [crayon-66298df57fee0443819587/] 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 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-66298df58aec9754097683/] [crayon-66298df58aed3358333030/] 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-66298df58ce3d008105441/] [crayon-66298df58ce49313278532/] 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-66298df58ed1b768739258/] [crayon-66298df58ed24229254267/] 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 […]

  • Bash return array from function
    25 July

    Return Array from Function in Bash

    Bash cannot return values, whether a single value or an array, but it can return a status (the same as other programs). However, there are multiple turnarounds that we can use to return an array from a function. Let’s explore them below. Using nameref Feature To return the entire array from a function in Bash: […]

  • PowerShell merge arrays
    25 July

    Merge Arrays in PowerShell

    Using + Operator Use + operator to merge arrays in PowerShell. [crayon-66298df593b8a378495836/] [crayon-66298df593b93738853265/] We used the sub-expression operator represented by @() to create two separate arrays named $array1 and $array2 (you can also create arrays without using the sub-expression operator). Note that both arrays contained string-type values. Next, we used the + operator to join […]

  • Bash format date to yyyymmdd
    25 July

    Format Date to yyyymmdd in Bash

    Using date Command Use the date command to format the date to yyyymmdd in Bash. [crayon-66298df593f5e018680130/] [crayon-66298df593f62157382562/] In the above example, the bash date command is used to get the current date with the format specifier '%Y%m%d' to specify the date format. In Bash, the date command is used to retrieve the date and time […]

  • Bash get last word in each line
    24 July

    Get Last Word in Each Line in Bash

    Using awk Command Use the awk command to get the last word of each line from a file in Bash. [crayon-66298df595b6d365489156/] [crayon-66298df595b7a093505564/] [crayon-66298df595b7c386321409/] We use the awk command, a powerful text-processing tool allowing you to process and manipulate structured data. The awk command operated each line individually and performed action based on the predefined patterns […]