[Solved] Linux run scripts one after other in loop [closed]


#!/bin/bash

for ((;;)); do
    for i in {1..10}; do
        ./${i}.sh
    done
done

0

solved Linux run scripts one after other in loop [closed]