Looping and Skipping

  • + 0 comments
    for((i=1; i<=99; i++))
    do
      if (( i % 2 == 1 ))
      then
        echo "$i"
       fi
    done