5 8단과 9단만 출력하려면 어떻게 해야 할까요? 직접 수정한 후에 다음 스크립트를 확인해 보세요.
break-continue.sh
#!/bin/bash
for ((base = 2; base <= 9; base++))
do
if [ "$base" -lt 8 ]; then ----- ① continue
fi
for ((mult = 1 ; mult <= 9; mult++))
do
let "result = base * mult"
echo "$base * $mult = $result"
done
echo ""
done
echo "End of script"