para loop no script de shell
for i in {1..5}
do
echo "Welcome $i times"
done
Cruel Capybara
for i in {1..5}
do
echo "Welcome $i times"
done
years=(2018 2019)
days=(74 274)
for year in "${years[@]}"; do
for day in $(seq -w ${days[0]} ${days[1]}); do
echo $year
echo $day
done
done
for i in `seq 1 10`
do
echo $i #Do something here.
done
#!/bin/bash
START=1
END=5
echo "Countdown"
for (( c=$START; c<=$END; c++ ))
do
echo -n "$c "
sleep 1
done
echo
echo "Boom!"
for ((i = 1; i <= 10 ; i++)); do
echo $i
done
#!/bin/bash
for i in 1 2 3 4 5
do
echo "Welcome $i times"
done
-----------------------------------
#!/bin/bash
for i in {1..5}
do
echo "Welcome $i times"
done
----------------------------------
#!/bin/bash
for i in {0..10..2}
do
echo "Welcome $i times"
done
------------------------------------
a=0
# -lt is less than operator
#Iterate the loop until a less than 10
while [ $a -lt 10 ]
do
# Print the values
echo $a
# increment the value
a=`expr $a + 1`
done