1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-01 06:50:26 +02:00

Update 102-loops.md (#6071)

bug in the code
This commit is contained in:
Karim Safan
2024-07-07 16:02:50 +03:00
committed by GitHub
parent 6cd18458db
commit 36b42dfaa2

View File

@@ -13,7 +13,7 @@ Here is a simple sample for loop in bash/shell:
```bash
for i in 1 2 3
do
echo $i
echo "$i"
done
```
This will output:
@@ -23,4 +23,4 @@ This will output:
3
```
This is just the surface of looping in shell programming in Linux. These structures, when used wisely, can enhance your scripts and open up many areas for effective scripting and automation.
This is just the surface of looping in shell programming in Linux. These structures, when used wisely, can enhance your scripts and open up many areas for effective scripting and automation.