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
1 changed files with 3 additions and 3 deletions

View File

@ -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