05-passwordbox.sh 180 B

123456789101112
  1. #!/bin/sh
  2. whiptail \
  3. --title 'passwordbox' \
  4. --backtitle 'whiptail' \
  5. --ok-button 'Aceptar' \
  6. --cancel-button 'Cancelar' \
  7. --passwordbox \
  8. 'Contraseña:' \
  9. 8 \
  10. 32