Looping with Numbers

  • + 0 comments

    !/bin/bash

    for((i=1; i<=50; i++)) do echo "$i" done