Skip to content

Commit 716cf06

Browse files
authored
Update programming_more_bash_conditional_loop.txt
1 parent 1fadf18 commit 716cf06

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

programming_more_bash_conditional_loop.txt

+6-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ then
77
[else
88
fi
99
sample:
10-
11-
12-
--> FOR type x to y
13-
14-
for x := 1 to 10 do
15-
begin
16-
statements
17-
end
10+
if [ "$var_test" == "1" ]
11+
then
12+
echo $var_test
13+
else
14+
echo "erro"
15+
fi
1816

1917
--> For type in list
2018

0 commit comments

Comments
 (0)