About 716,000 results
Open links in new tab
  1. 9 Examples of for Loops in Linux Bash Scripts - How-To Geek

    All scripting and programming languages have some way of handling loops. A loop is a section of code that you want to have executed repeatedly. Rather than type the same set of instructions …

  2. Looping Statements | Shell Script - GeeksforGeeks

    Jan 3, 2024 · done: Marks the end of the loop. `for` statement in Shell Script in Linux. The for loop operates on lists of items. It repeats a set of commands for every item in a list. Here var is the …

  3. unix - Shell script "for" loop syntax - Stack Overflow

    Step the loop manually: i=0 max=10 while [ $i -lt $max ] do echo "output: $i" true $(( i++ )) done If you don’t have to be totally POSIX, you can use the arithmetic for loop: max=10 for (( i=0; i < …

  4. Bash Scripting - For Loop - GeeksforGeeks

    Sep 15, 2023 · To execute a for loop we can write the following syntax: echo $n. In the first iteration, n takes the value “a”, and the script prints “a”. In the second iteration, n takes the …

  5. How do I write a 'for' loop in Bash? - Stack Overflow

    Sep 8, 2008 · Try the Bash built-in help: The `for' loop executes a sequence of commands for each member in a. list of items. If `in WORDS ...;' is not present, then `in "$@"' is. assumed. …

  6. 16 Examples of For Loop in Shell Script [Free Downloads]

    Mar 13, 2024 · This article presents hands-on examples on the topic of for loop in Shell Script. It covers all possible for loop syntaxes that can be useful to a user while creating loop-based …

  7. 10 Common Bash “for” Loop Examples [Basic to Intermediate]

    Mar 17, 2024 · Create a Bash script that renames all files in a directory with a specific extension (e.g., .txt) to include a timestamp using a for loop. Develop a Bash script that generates …

  8. Bash For Loop Examples - nixCraft

    Jan 31, 2025 · A bash for loop is a bash programming language statement which allows code to be repeatedly executed. A for loop is classified as an iteration statement i.e. it is the repetition …

  9. For loop - Linux Bash Shell Scripting Tutorial Wiki - nixCraft

    Jul 17, 2017 · Bash shell can repeat particular instruction again and again, until particular condition satisfies. A group of instruction that is executed repeatedly is called a loop. Bash …

  10. Mastering For Loops in Shell Scripting for Developers | MoldStud

    1 day ago · Master the use of for loops in shell scripting with this ultimate guide. Learn syntax, practical examples, and tips to enhance your scripting skills effectively. To enhance your …