Ejemplo 1: Bash add pause prompt en un script de shell con el comando bash pause
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 ..."
Ejemplo 2: pausar el script bash
function pause(){
read -s -n 1 -p "Press any key to continue . . ."
echo ""
}
## Pause it ##
pause
## rest of script below
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)