Bash Agregar indicación de pausa en un script de shell con el comando de pausa bash
read -p "Press [Enter] key to start backup..."
read -p "Press any key to resume ..."
## Bash add pause prompt for 5 seconds ##
read -t 5 -p "I am going to wait for 5 seconds only ..."
Nervous Nightingale