1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-07 06:50:47 +00:00

Bash: fix mistake with for in

This commit is contained in:
Julien Le Coupanec 2018-02-03 20:24:28 +00:00
parent d05ed80faa
commit 0892c8d365

View File

@ -249,10 +249,10 @@ then
statements]
fi
for x := 1 to 10 do
begin
for x in {1..10}
do
statements
end
done
for name [in list]
do