Skip to main content

Bash Script For Loop

Mastering bash scripting can unlock powerful capabilities in managing repetitive tasks efficiently. In this guide, we'll explore the fundamentals of the for loop in bash scripting, a versatile tool that can save both time and effort. Whether you're a seasoned programmer or new to scripting, understanding for loops will enhance your scripting skills significantly.

What is a Bash Script For Loop?

A for loop in bash scripting is a control flow statement that allows code to be executed repeatedly based on a set of conditions. Imagine needing to execute a command multiple times — instead of rewriting the code repeatedly, a for loop does the work for you, iterating over a sequence of items or numbers. It's like a chef preparing multiple dishes using the same recipe — they just need to change the ingredients.

Basic Syntax of a For Loop in Bash

The structure of a for loop in bash follows a simple syntax:

for item in [LIST]
do
   [COMMANDS]
done
  • for item in [LIST]: The loop starts with the keyword for followed by a variable that represents each item in the list.
  • do: Indicates the beginning of the command block.
  • [COMMANDS]: Commands that you want to execute for each item.
  • done: Ends the loop.

Example: Iterating Over a List of Words

To better understand how a for loop works, let's start by iterating over a list of words.

for word in Hello World Bash Script
do
   echo $word
done

Explanation:

  • for word in Hello World Bash Script: The loop initializes the variable word and assigns it each of the listed words sequentially.
  • do: Begins the block of commands to execute.
  • echo $word: Prints the current value of word.
  • done: Completes the loop execution once all words are printed.

When executed, this script prints:

Hello
World
Bash
Script

Using Numbers in a For Loop

You might encounter situations where you need to iterate over a series of numbers. Here's how you can do that using a for loop:

for number in {1..5}
do
   echo "Number: $number"
done

Explanation:

  • for number in {1..5}: Sets up a sequence from 1 to 5.
  • do: Initiates the action block.
  • echo "Number: $number": Outputs the current number.
  • done: Closes the loop.

This script will output:

Number: 1
Number: 2
Number: 3
Number: 4
Number: 5

Practical Application: Iterating Over Files

A for loop also becomes handy when working with files. Imagine you need to perform operations on multiple files, such as renaming or moving them.

Example:

for file in *.txt
do
   mv "$file" "${file%.txt}.backup"
done

Explanation:

  • for file in *.txt: Loops through all files ending with .txt.
  • do: Begins operations on each file.
  • mv "$file" "${file%.txt}.backup": Renames each .txt file to .backup.
  • done: Ends the loop.

This renames every .txt file by changing its extension to .backup.

Nested For Loops

Sometimes your tasks require iterating through multiple sequences, that's where nested for loops come in.

Example:

for i in {1..3}
do
   for j in {1..3}
   do
      echo "i: $i, j: $j"
   done
done

Explanation:

  • First for loop: Iterates i through values 1 to 3.
  • Second for loop: For each i, loops j through values 1 to 3.
  • echo "i: $i, j: $j": Prints combinations of i and j.

This script outputs all pair combinations:

i: 1, j: 1
i: 1, j: 2
i: 1, j: 3
...
i: 3, j: 3

Conclusion

Understanding for loops in bash scripting empowers you to automate repetitive tasks efficiently. By practicing with different lists and sequences, you can apply these concepts to real-world scripting challenges, saving time and reducing errors.

For further reading on scripting and loops in various languages, you might find Mastering the C For Loop - The Code Journal or For Loops in R: A Beginner's Guide - The Code Journal beneficial. Enhance your scripting skills and make your work more efficient with these powerful tools!

Popular posts from this blog

How to Check if Someone is Connected to Your Machine in Linux

Picture this: you glance at your system monitor and notice your CPU is humming along even though you're not running anything demanding. Or maybe your internet feels sluggish for no obvious reason. A small, uneasy thought creeps in — is someone else on my machine right now? For Linux users, this isn't something you have to wonder about. Linux ships with a powerful set of built-in tools that let you see exactly who's connected, who's logged in, and what your network is doing at any given moment. You don't need to be a security expert to use them — you just need to know where to look. This guide walks you through the practical, no-nonsense steps to check for unauthorized connections on your Linux system, with real commands you can run right now. Why Monitoring Network Connections Matters Every device on a network — including your own Linux machine — communicates using an IP address. When another device or user connects to your system, that connection shows up as a trac...

How to Set Up a Linux Web Server and Host an HTML Page Easily

Setting up a web server on Linux means spending a fair amount of time in the terminal — Linux leans heavily on the command line rather than clicking through menus, so you'll be typing out instructions more often than not.  If you're new to this, it can feel a little intimidating at first, but the good news is you don't need to become a Linux wizard overnight. A handful of core commands will get you surprisingly far. A few you'll lean on constantly: cd — move between directories ls — see what's in the current directory mkdir — create a new folder nano or vim — edit files right there in the terminal sudo — run something with administrator privileges Get comfortable with these and you'll be able to navigate around, tweak configuration files, and install software without much trouble. You don't need to memorize everything — you just need to be confident enough to follow along with clear instructions, which is exactly what this guide aims to give you....

C++ vcpkg Manifest Mode + CMake

 If you've ever tried to install a C++ library and felt like you were assembling furniture without instructions, this article is for you. We're going to talk about vcpkg manifest mode and how it works with CMake , and I'm going to explain it like you're five years old (in a good way — no judgment here). First, Let's Talk About the Problem In most programming languages, adding a library is easy. Python has pip install requests . JavaScript has npm install express . You type one command, and boom, the library shows up in your project. C++ never really had that. For decades, if you wanted to use a library like fmt or nlohmann/json , you had to: Download the source code yourself Figure out how to compile it Tell your compiler where to find the headers Tell your linker where to find the compiled binaries Cry a little vcpkg is Microsoft's answer to this mess. It's a package manager for C++ — like pip or npm , but for C++ libraries. And manifest mode...