Announcement

Collapse
No announcement yet.

Bash Script Loops Examples

Collapse
X
Collapse
  •  

  • Bash Script Loops Examples


    A loop in programming is a control structure that allows a specific code to be executed repeatedly until a condition is met. This process is repeated until no further action is required. Loop allows you to repeat the desired set of instructions numerous times to attain the desired outcome. These recursions can be useful for all tasks that require repetitive operations or when working with data collections.
    In this article, we will explore the meaning, types, and examples of loops, further gaining insight into how to use them correctly, enabling you to develop powerful, concise, and adaptable code. As we mentioned earlier, three types of loops are available in bash scripting. Let’s divide this section into multiple parts to explain each loop briefly.
    For Loop  in Bash


    For loop is used to execute specific commands or codes for particular times. Here is the basic syntax of the for loop:


    for var in list

    do

    commands

    done




    For example, let’s use the for loop to print a message for 10 times:


    div>

    <div style="text-align: justify">!#/bin/bash

    for i in {1..10}; do

    echo "Hello, World!"

    done


    Once you execute the command, the system will print the message “Time for Linux” 10 times:

    While Loop

    You can use the while loop to execute the commands if a specific condition is true.

    while [ condition ]

    do

    commands

    done


    For instance, let’s use the while loop, where the system will automatically exit whenever you press the S button on the keyboard: 

    #!/bin/bash

    while :

    do

    read -n 1 k <&1

    if [[ $k = S ]]

    then

    break

    else

    echo "You pressed '$k'"

    fi

    done




    In the above script, K is the variable used for all the keys except the S. Moreover, the loop will break the condition after the entry of the S key: 



    Until Loop

    The until loop is similar to the while loop, but it only continues if the specific condition is false and terminates when the condition is true.

    until [ condition ]

    do

    commands

    done


    For example, you can use the until loop to reach a specific condition, so let’s create a script to print even numbers between o and 30.




    #!/bin/bash

    counter=0

    until [ $counter -gt 30 ]; do

    echo $counter

    ((counter+=2))

    done




    Once you run the script, the system will print all the even numbers until 30. 

    Wrapping Up

    This was all about the simplest explanation behind bash script loops with examples. We have included multiple examples of various types of loops available in bash scripting. We recommend that you explore your creativity and skills to create amazing bash scripts around all the loops.



    More...
      Posting comments is disabled.

    Categories

    Collapse

    Article Tags

    Collapse

    There are no tags yet.

    Latest Articles

    Collapse

    • 5 Compelling Reasons to Choose Linux Over Windows
      by Kasimba



      by George Whittaker


      Introduction

      In the world of operating systems, Windows has long held the lion’s share of the market. Its user-friendly interface and wide compatibility have made it the default choice for many. However, in recent years, Linux has steadily gained traction, challenging the status quo with its unique offerings. What was once considered the domain of tech enthusiasts and developers is now...
      Yesterday, 06:52 AM
    • NGINX vs Apache; Web Server Comparison
      by Kasimba
      Overview of NGINX and Apache

      NGINX and Apache are leading web server solutions utilized for hosting websites and web applications. Apache, developed by the Apache Software Foundation, offers robust configuration options and extensibility. NGINX, created by Igor Sysoev, is known for its efficiency in handling numerous concurrent connections with low resource utilization. Both servers function not only as HTTP servers but also as reverse proxies, load balancers, and more.

      What is

      ...
      Yesterday, 03:54 AM
    • Monthly News – November 2024
      by Kasimba
      Hi everyone, I hope you are enjoying the BETA so far! This release introduces new features, tools, and artwork, so we anticipate a good number of bug reports. Every single fix helps us refine and improve the final release. Your feedback during the BETA phase is extremely important to us. Linux Mint 22.1 is our […]

      More...
      12-16-2024, 11:50 AM
    • Mastering OpenSSH for Remote Access on Debian Like a Pro
      by Kasimba



      by George Whittaker


      Introduction

      Remote access is a cornerstone of modern IT infrastructure, enabling administrators and users to manage systems, applications, and data from virtually anywhere. However, with great power comes great responsibility—ensuring that remote access remains secure is paramount. This is where OpenSSH steps in, providing robust, encrypted communication for secure remote management....
      12-13-2024, 10:31 PM
    • Unlocking the Full Potential of Linux's Most Versatile Search Tool
      by Kasimba



      by George Whittaker


      Introduction

      The grep command, short for "global regular expression print," is one of the most powerful and frequently used tools in Unix and Linux environments. From sifting through log files to finding patterns in text, grep is a Swiss Army knife for system administrators, developers, and data analysts alike. However, many users limit themselves to its basic functionality, unaware...
      12-13-2024, 09:24 PM
    • Linux Mint 22.1 “Xia” – BETA Release
      by Kasimba
      This is the BETA release for Linux Mint 22.1 “Xia”. Linux Mint 22.1 is a long term support release which will be supported until 2029. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use. New features: This new version of Linux Mint contains […]

      More...
      12-12-2024, 09:31 AM
    Working...
    X