mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2025-11-08 14:01:35 +00:00
Bash: fix mistake with for in
This commit is contained in:
@@ -249,10 +249,10 @@ then
|
|||||||
statements]
|
statements]
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for x := 1 to 10 do
|
for x in {1..10}
|
||||||
begin
|
do
|
||||||
statements
|
statements
|
||||||
end
|
done
|
||||||
|
|
||||||
for name [in list]
|
for name [in list]
|
||||||
do
|
do
|
||||||
|
|||||||
Reference in New Issue
Block a user