Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added different style of using for loop in bash #93

Merged
merged 1 commit into from
Oct 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions bash/for_loop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash
echo "Different style of using for loop"
echo -e "\nStyle #1"
words="This is the right place to learn and sahre your skills"
for word in $words
do
echo $word
done
echo -e "\nStyle #2"
for word in Directly accessing value
do
echo $word
done
echo -e "\nStyle #3"
for ((i = 1; i <= 10; i++))
do
echo $i | tr '\n' ' '
done
echo -e "\n\nThank You"