02-msgbox.sh 245 B

1234567891011
  1. #!/bin/sh
  2. whiptail \
  3. --title 'msgbox' \
  4. --backtitle 'whiptail' \
  5. --ok-button 'Aceptar' \
  6. --msgbox \
  7. 'La instalación y la configuración del sistema se ha realizado con éxito, presione enter para reiniciar el ordenador.' \
  8. 0 \
  9. 0