🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 148 (from laksa108)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

📄
INDEXABLE
✅
CRAWLED
4 days ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0.1 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://www.educba.com/for-loop-in-unix/
Last Crawled2026-04-09 07:58:30 (4 days ago)
First Indexed2020-02-22 08:53:58 (6 years ago)
HTTP Status Code200
Meta TitleFor Loop in Unix | Learn How For Loop Works in Unix?
Meta DescriptionGuide to For Loop in Unix. Here we discuss the syntax and working of For Loop in Unix along with Examples and its code implementation.
Meta Canonicalnull
Boilerpipe Text
Updated May 31, 2023 Overview of For Loop in Unix A loop is a sequence of instructions repeated continuously until a certain condition is reached. It operates on a list of the item & repeats the set of commands for each item in a list. Loop is a fundamental concept of any programming language. In Unix, four kinds of loop programming are used: While Loop For Loop Until Loop Select Loop Different loops are used in different situations. The use of the appropriate loop based on the situation is crucial for a good programmer. Specifically talking about the for a loop. This loop executes for the current number of times. Loop operates on a given list of items and executes the set of commands on every item on the list. Syntax: for item in element1 element2 element3 . .. element do Set of commands done Here, we assign the variable name “item” to the elements one by one. In this case, we have a sequence of characters, such as element1, element2, element3, etc., which are separated by spaces. How For Loop Work in Unix? You use a loop when you want to execute a set of commands multiple times. Each time the loop executes, we refer to it as an iteration. During each iteration, we assign the value to an item variable. As we iterate over the loop, we assign it to the next element from a list of elements. Let us understand the working of the loop with the help of an illustration. Examples of For Loop in Unix Let us understand the usage of for loop with the help of some basic examples. Example #1 Let us look at an example with a simple for loop statement. Code: for var in 1 2 3 4 5 do echo "Element $var" done Output: Explanation: In the script shown above, the for loop will iterate over the list (1 2 3 4 Since the list contains five elements and hence the loop runs five times. Echo command prints the statements as shown in the output above. The $ tells the shell interpreter to treat the var as a variable name and substitute its value in its place rather than treat it as a text or external command. You can alter the flow of the loop by using the commands mentioned below. Break:  Breaks the flow of the loop and steps down the code to the end of the loop. Once a certain set of commands executes or the conditions satisfy, the break statement terminates the entire loop’s execution. Continue:  Continue command is similar to the break statement, except that it exits the current iteration of the loop rather than the entire loop. The purpose is to use it when an error has occurred, and we are willing to execute the code further for other iterations of the loop. Example #2 Let us look at an example with a break statement. Code: for var in 1 2 3 4 5 do if [ $var == 4 ] then break fi echo "Element not equal to 4. Iteration no $var" done Output: Explanation: The for loop in the script above iterates over the list (1 2 3 4 5), and upon satisfying the condition specified in the if-clause, it executes the break statement, which terminates the loop. The output shown above clearly justifies the same. When the value of var equals 4, the loop terminates, and the echo command in the fi clause does not print any further iterations. Example #3 Let us look at an example with a continue statement. Code: for var in 1 2 3 4 5 do if [ $var == 4 ] then continue fi echo "Element not equal to 4. Iteration no $var" done Output: Explanation: In this scenario, the for loop iterates over the elements and verifies whether each element’s value is equal to 4. If the condition satisfies, the program will skip the subsequent commands following the “continue” statement and proceed to the next item in the iteration. In the example above, the condition will satisfy during the fourth iteration, which will trigger the execution of the continue statement. This will skip the echo command and directly move to the fifth iteration.The output reflects the same. Example #4 Using a range of numbers as well as increments. Code: for var in {1..10..2} do echo "Number: $var" done Output: Explanation: Here, the loop starts with 1 and increments by 2 until it reaches 10. The above loop will iterate five times, generating the output as shown above. Important Points to Remember: Shell scripting is case sensitive , and hence proper syntax is to be followed while writing the shell scripting. Indentations within the loops are not necessary. But it makes are script legitimate. Spaces must separate the elements of a list. If you use a comma (,), it will be treated as a separate list element. Furthermore, avoid enclosing the string character in quotes; otherwise, it will be treated as part of the string variable. Conclusion The loops are one of the most crucial concepts of structured programming techniques. It helps us improve the process’s productivity and robustness through automation. With the use of loops, we can avoid typing redundant commands, which on a larger node helps us reduce the efforts and typographical errors. Recommended Articles We hope that this EDUCBA information on “For Loop in Unix” was beneficial to you. You can view EDUCBA’s recommended articles for more information. SED command in Unix Unix Shell Commands Install UNIX Crontab in Unix
Markdown
[![EDUCBA Logo](https://cdn.educba.com/academy/wp-content/uploads/2025/04/educba_logo.png)](https://www.educba.com/) [EDUCBA](https://www.educba.com/) MENUMENU - [Explore](https://www.educba.com/explore/) - [EDUCBA Pro](https://www.educba.com/educba-pro/) - [PRO Bundles](https://www.educba.com/pro-bundles/) - [All Courses](https://www.educba.com/educba-courses/) - [All Specializations](https://www.educba.com/courses/) - [Blog](https://www.educba.com/blog/) - [Enterprise](https://www.educba.com/enterprise/) - [Free Courses](https://www.educba.com/skillup-101free/) - [All Courses](https://www.educba.com/educba-courses/) - [All Specializations](https://www.educba.com/courses/) - [Log in](https://www.educba.com/for-loop-in-unix/) - [Sign Up](https://www.educba.com/sign-up/) [Home](https://www.educba.com/) [Software Development](https://www.educba.com/software-development/) [Software Development Tutorials](https://www.educba.com/software-development/software-development-tutorials/) [Unix Tutorial](https://www.educba.com/software-development/software-development-tutorials/unix-tutorial/) **For Loop in Unix** # For Loop in Unix ![Priya Pedamkar](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E) ![Priya Pedamkar](https://cdn.educba.com/academy/wp-content/uploads/2021/02/Priya-Pedamkar-150x150.png) Article by[Priya Pedamkar](https://www.educba.com/author/priya-pedamkar/) Updated May 31, 2023 ![For Loop in Unix](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20900%20500'%3E%3C/svg%3E)![For Loop in Unix](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix.jpg) ## Overview of For Loop in Unix A loop is a sequence of instructions repeated continuously until a certain condition is reached. It operates on a list of the item & repeats the set of commands for each item in a list. Loop is a fundamental concept of any programming language. In Unix, four kinds of loop programming are used: [Watch our Demo Courses and Videos]() Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more. - While Loop - [For Loop](https://www.educba.com/for-loop-in-matlab/) - Until Loop - Select Loop Different loops are used in different situations. The use of the appropriate loop based on the situation is crucial for a good programmer. Specifically talking about the for a loop. This loop executes for the current number of times. Loop operates on a given list of items and executes the set of commands on every item on the list. **Syntax:** ``` for item in element1 element2 element3 . .. element do Set of commands done ``` Here, we assign the variable name “item” to the elements one by one. In this case, we have a sequence of characters, such as element1, element2, element3, etc., which are separated by spaces. ### How For Loop Work in Unix? You use a loop when you want to execute a set of commands multiple times. Each time the loop executes, we refer to it as an iteration. During each iteration, we assign the value to an item variable. As we iterate over the loop, we assign it to the next element from a list of elements. Let us understand the working of the loop with the help of an illustration. ![How For Loop Works in Unix](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20400%20373'%3E%3C/svg%3E)![How For Loop Works in Unix](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-2.jpg) ### Examples of For Loop in Unix Let us understand the usage of for loop with the help of some basic examples. #### Example \#1 Let us look at an example with a simple for loop statement. **Code:** ``` for var in 1 2 3 4 5 do echo "Element $var" done ``` **Output:** ![For Loop in Unix eg1](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2088%2083'%3E%3C/svg%3E)![For Loop in Unix eg1](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg1.png) **Explanation:** In the script shown above, the for loop will iterate over the list (1 2 3 4 Since the list contains five elements and hence the loop runs five times. Echo command prints the statements as shown in the output above. The \$ tells the shell interpreter to treat the var as a variable name and substitute its value in its place rather than treat it as a text or external command. You can alter the flow of the loop by using the commands mentioned below. - **Break:** Breaks the flow of the loop and steps down the code to the end of the loop. Once a certain set of commands executes or the conditions satisfy, the break statement terminates the entire loop’s execution. - **Continue:** Continue command is similar to the break statement, except that it exits the current iteration of the loop rather than the entire loop. The purpose is to use it when an error has occurred, and we are willing to execute the code further for other iterations of the loop. #### Example \#2 Let us look at an example with a break statement. **Code:** ``` for var in 1 2 3 4 5 do if [ $var == 4 ] then break fi echo "Element not equal to 4. Iteration no $var" done ``` **Output:** ![For Loop in Unix eg2](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20281%2052'%3E%3C/svg%3E)![For Loop in Unix eg2](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg2.png) **Explanation:** The for loop in the script above iterates over the list (1 2 3 4 5), and upon satisfying the condition specified in the if-clause, it executes the break statement, which terminates the loop. The output shown above clearly justifies the same. When the value of var equals 4, the loop terminates, and the echo command in the fi clause does not print any further iterations. #### Example \#3 Let us look at an example with a continue statement. **Code:** ``` for var in 1 2 3 4 5 do if [ $var == 4 ] then continue fi echo "Element not equal to 4. Iteration no $var" done ``` **Output:** ![continue statement output](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20292%2072'%3E%3C/svg%3E)![continue statement output](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg3.png) **Explanation:** In this scenario, the for loop iterates over the elements and verifies whether each element’s value is equal to 4. If the condition satisfies, the program will skip the subsequent commands following the “continue” statement and proceed to the next item in the iteration. In the example above, the condition will satisfy during the fourth iteration, which will trigger the execution of the continue statement. This will skip the echo command and directly move to the fifth iteration.The output reflects the same. #### Example \#4 Using a range of numbers as well as increments. **Code:** ``` for var in {1..10..2} do echo "Number: $var" done ``` **Output:** ![range of numbers output](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2088%2083'%3E%3C/svg%3E)![range of numbers output](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg4.png) **Explanation:** Here, the loop starts with 1 and increments by 2 until it reaches 10. The above loop will iterate five times, generating the output as shown above. **Important Points to Remember:** - [Shell scripting is case sensitive](https://www.educba.com/what-is-shell-scripting/), and hence proper syntax is to be followed while writing the shell scripting. - Indentations within the loops are not necessary. But it makes are script legitimate. - Spaces must separate the elements of a list. If you use a comma (,), it will be treated as a separate list element. - Furthermore, avoid enclosing the string character in quotes; otherwise, it will be treated as part of the string variable. ### Conclusion The loops are one of the most crucial concepts of structured programming techniques. It helps us improve the process’s productivity and robustness through automation. With the use of loops, we can avoid typing redundant commands, which on a larger node helps us reduce the efforts and typographical errors. ### Recommended Articles We hope that this EDUCBA information on “For Loop in Unix” was beneficial to you. You can view EDUCBA’s recommended articles for more information. 1. [SED command in Unix](https://www.educba.com/sed-command-in-unix/) 2. [Unix Shell Commands](https://www.educba.com/unix-shell-commands/) 3. [Install UNIX](https://www.educba.com/install-unix/) 4. [Crontab in Unix](https://www.educba.com/crontab-in-unix/) Primary Sidebar Footer ###### Follow us\! - [![EDUCBA Facebook](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA Facebook](https://cdn.educba.com/academy/wp-content/uploads/2022/06/facebook9.png)](https://www.facebook.com/educba.official) [![EDUCBA Twitter](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA Twitter](https://cdn.educba.com/academy/wp-content/uploads/2023/11/twitter_social.png)](https://x.com/EducbaBusiness) [![EDUCBA LinkedIN](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA LinkedIN](https://cdn.educba.com/academy/wp-content/uploads/2022/06/linkedin9.png)](https://in.linkedin.com/company/corporate-bridge-academy) [![EDUCBA Instagram](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA Instagram](https://cdn.educba.com/academy/wp-content/uploads/2022/06/instagram9.png)](https://www.instagram.com/educba.official/) - [![EDUCBA Youtube](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA Youtube](https://cdn.educba.com/academy/wp-content/uploads/2022/06/youtube9.png)](https://www.youtube.com/channel/UC1_jSu02VOW1pusqb2NF49g) [![EDUCBA Coursera](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA Coursera](https://cdn.educba.com/academy/wp-content/uploads/2023/12/coursera-icon.png)](https://www.coursera.org/partners/educba/) [![EDUCBA Udemy](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2041'%3E%3C/svg%3E)![EDUCBA Udemy](https://cdn.educba.com/academy/wp-content/uploads/2023/12/udemy-icon.png)](https://www.udemy.com/user/premananda-suna/) ###### APPS [![EDUCBA Android App](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20646%20250'%3E%3C/svg%3E)![EDUCBA Android App](https://cdn.educba.com/images/educba-google-play-badge.png)](https://play.google.com/store/apps/details?id=com.educba.www) [![EDUCBA iOS App](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20646%20250'%3E%3C/svg%3E)![EDUCBA iOS App](https://cdn.educba.com/images/educba-app-store-ios.png)](https://apps.apple.com/us/app/educba-learning-app/id1341654580) ###### Blog - [Blog](https://www.educba.com/blog/?source=footer) - [Free Tutorials](https://www.educba.com/tutorials/?source=footer) - [About us](https://www.educba.com/about-us/?source=footer) - [Contact us](https://www.educba.com/contact-us/?source=footer) - [Log in](https://www.educba.com/login/?source=footer) ###### Courses - [Enterprise Solutions](https://www.educba.com/enterprise/?source=footer) - [Free Courses](https://www.educba.com/skillup-101free/?source=footer) - [Explore Programs](https://www.educba.com/explore/?source=footer) - [All Courses](https://www.educba.com/courses/?source=footer) - [All in One Bundles](https://www.educba.com/all-in-one-bundles/?source=footer) - [Sign up](https://www.educba.com/sign-up/?source=footer) ###### Email - [\[email protected\]](https://www.educba.com/cdn-cgi/l/email-protection#80e2ecefe7c0e5e4f5e3e2e1aee3efed) ISO 10004:2018 & ISO 9001:2015 Certified © 2026 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS. ![EDUCBA](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20155%2049'%3E%3C/svg%3E) ![EDUCBA](https://cdn.educba.com/images/website_logo_transparent_background.png) X ![EDUCBA](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20155%2049'%3E%3C/svg%3E) ![EDUCBA](https://cdn.educba.com/images/website_logo_transparent_background.png) X ![EDUCBA](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20155%2049'%3E%3C/svg%3E) ![EDUCBA](https://cdn.educba.com/images/website_logo_transparent_background.png) x Loading . . . ![Quiz](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2080%20100'%3E%3C/svg%3E) ![Quiz](https://cdn.educba.com/academy/wp-content/uploads/2021/06/80xauto_quiz.png) X ![EDUCBA](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20155%2049'%3E%3C/svg%3E) ![EDUCBA](https://cdn.educba.com/images/website_logo_transparent_background.png) Free Software Development Course Web development, programming languages, Software testing & others X This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our [Privacy Policy](https://www.educba.com/privacy-policy/?source=popup "Privacy Policy") OK EDUCBA Login X [🚀 Limited Time Offer\! - 🎁 ENROLL NOW](https://www.educba.com/all-in-one/)
Readable Markdown
Updated May 31, 2023 ![For Loop in Unix](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix.jpg) ## Overview of For Loop in Unix A loop is a sequence of instructions repeated continuously until a certain condition is reached. It operates on a list of the item & repeats the set of commands for each item in a list. Loop is a fundamental concept of any programming language. In Unix, four kinds of loop programming are used: - While Loop - [For Loop](https://www.educba.com/for-loop-in-matlab/) - Until Loop - Select Loop Different loops are used in different situations. The use of the appropriate loop based on the situation is crucial for a good programmer. Specifically talking about the for a loop. This loop executes for the current number of times. Loop operates on a given list of items and executes the set of commands on every item on the list. **Syntax:** ``` for item in element1 element2 element3 . .. element do Set of commands done ``` Here, we assign the variable name “item” to the elements one by one. In this case, we have a sequence of characters, such as element1, element2, element3, etc., which are separated by spaces. ### How For Loop Work in Unix? You use a loop when you want to execute a set of commands multiple times. Each time the loop executes, we refer to it as an iteration. During each iteration, we assign the value to an item variable. As we iterate over the loop, we assign it to the next element from a list of elements. Let us understand the working of the loop with the help of an illustration. ![How For Loop Works in Unix](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-2.jpg) ### Examples of For Loop in Unix Let us understand the usage of for loop with the help of some basic examples. #### Example \#1 Let us look at an example with a simple for loop statement. **Code:** ``` for var in 1 2 3 4 5 do echo "Element $var" done ``` **Output:** ![For Loop in Unix eg1](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg1.png) **Explanation:** In the script shown above, the for loop will iterate over the list (1 2 3 4 Since the list contains five elements and hence the loop runs five times. Echo command prints the statements as shown in the output above. The \$ tells the shell interpreter to treat the var as a variable name and substitute its value in its place rather than treat it as a text or external command. You can alter the flow of the loop by using the commands mentioned below. - **Break:** Breaks the flow of the loop and steps down the code to the end of the loop. Once a certain set of commands executes or the conditions satisfy, the break statement terminates the entire loop’s execution. - **Continue:** Continue command is similar to the break statement, except that it exits the current iteration of the loop rather than the entire loop. The purpose is to use it when an error has occurred, and we are willing to execute the code further for other iterations of the loop. #### Example \#2 Let us look at an example with a break statement. **Code:** ``` for var in 1 2 3 4 5 do if [ $var == 4 ] then break fi echo "Element not equal to 4. Iteration no $var" done ``` **Output:** ![For Loop in Unix eg2](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg2.png) **Explanation:** The for loop in the script above iterates over the list (1 2 3 4 5), and upon satisfying the condition specified in the if-clause, it executes the break statement, which terminates the loop. The output shown above clearly justifies the same. When the value of var equals 4, the loop terminates, and the echo command in the fi clause does not print any further iterations. #### Example \#3 Let us look at an example with a continue statement. **Code:** ``` for var in 1 2 3 4 5 do if [ $var == 4 ] then continue fi echo "Element not equal to 4. Iteration no $var" done ``` **Output:** ![continue statement output](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg3.png) **Explanation:** In this scenario, the for loop iterates over the elements and verifies whether each element’s value is equal to 4. If the condition satisfies, the program will skip the subsequent commands following the “continue” statement and proceed to the next item in the iteration. In the example above, the condition will satisfy during the fourth iteration, which will trigger the execution of the continue statement. This will skip the echo command and directly move to the fifth iteration.The output reflects the same. #### Example \#4 Using a range of numbers as well as increments. **Code:** ``` for var in {1..10..2} do echo "Number: $var" done ``` **Output:** ![range of numbers output](https://cdn.educba.com/academy/wp-content/uploads/2020/01/For-Loop-in-Unix-eg4.png) **Explanation:** Here, the loop starts with 1 and increments by 2 until it reaches 10. The above loop will iterate five times, generating the output as shown above. **Important Points to Remember:** - [Shell scripting is case sensitive](https://www.educba.com/what-is-shell-scripting/), and hence proper syntax is to be followed while writing the shell scripting. - Indentations within the loops are not necessary. But it makes are script legitimate. - Spaces must separate the elements of a list. If you use a comma (,), it will be treated as a separate list element. - Furthermore, avoid enclosing the string character in quotes; otherwise, it will be treated as part of the string variable. ### Conclusion The loops are one of the most crucial concepts of structured programming techniques. It helps us improve the process’s productivity and robustness through automation. With the use of loops, we can avoid typing redundant commands, which on a larger node helps us reduce the efforts and typographical errors. ### Recommended Articles We hope that this EDUCBA information on “For Loop in Unix” was beneficial to you. You can view EDUCBA’s recommended articles for more information. 1. [SED command in Unix](https://www.educba.com/sed-command-in-unix/) 2. [Unix Shell Commands](https://www.educba.com/unix-shell-commands/) 3. [Install UNIX](https://www.educba.com/install-unix/) 4. [Crontab in Unix](https://www.educba.com/crontab-in-unix/)
Shard148 (laksa)
Root Hash3186935955618038348
Unparsed URLcom,educba!www,/for-loop-in-unix/ s443