bash how to pause for seconds code example
Example: pause in bash
#pause 5 second, first method
read -t 5
#pause 5 second, second method
sleep 5s
#pause 5 second, first method
read -t 5
#pause 5 second, second method
sleep 5s