04-inputbox.sh 209 B

12345678910111213
  1. #!/bin/sh
  2. whiptail \
  3. --title 'inputbox' \
  4. --backtitle 'whiptail' \
  5. --ok-button 'Aceptar' \
  6. --cancel-button 'Cancelar' \
  7. --inputbox \
  8. 'Nombre completo:' \
  9. 8 \
  10. 64 \
  11. 'Ricardo García Jiménez'