Looping with Numbers

  • + 0 comments
    #!/usr/bin/env bash
    
    for i in {1..50}; do
        echo "$i"
    done