I'm a newbie here so please forgive my ignorance. I just want to ask if there is a way to put a delay for each commands execution in a shell script.
This is my current setup
command1
sleep 1
command2
sleep 1
.....
.....
command1000
sleep 1
Is there a way to put just 1 sleep command ( delay 1 second) after execution of each command. Thank you in advance!
Br, Mark
command1; sleep 1; command2; sleep 1?