1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 10:14:58 +02:00

Merge pull request #340 from JohnYangSam/patch-1

[bash/en] Correct bash for...in loop example
This commit is contained in:
Adam Bard
2013-09-13 10:14:41 -07:00

View File

@@ -82,7 +82,7 @@ esac
#For loops iterate for as many arguments given: #For loops iterate for as many arguments given:
#The contents of var $VARIABLE is printed three times. #The contents of var $VARIABLE is printed three times.
for $VARIABLE in x y z for VARIABLE in x y z
do do
echo "$VARIABLE" echo "$VARIABLE"
done done