8.02 while循环
while循环
#
#!/bin/bash
a
=
1
while
[[
$a -lt
10
]]
do
echo $a a
=
$(
expr $a + 1
)
done
⬅️上一页
下一页➡️