1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 17:55:26 +02:00

dialog: add Spanish translation (#15651)

This commit is contained in:
Darío Hereñú 2025-02-09 03:49:18 -03:00 committed by GitHub
parent 20d43eee8c
commit 4a390e955e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
pages.es/linux/dialog.md Normal file
View file

@ -0,0 +1,16 @@
# dialog
> Muestra cuadros de diálogo en el terminal.
> Más información: <https://manned.org/dialog>.
- Muestra un mensaje:
`dialog --msgbox "{{Mensaje}}" {{altura}} {{ancho}}`
- Solicita ingreso de texto al usuario:
`dialog --inputbox "{{Ingrese texto:}}" {{8}} {{40}} 2>{{salida.txt}}`
- Solicitar al usuario una pregunta de sí/no:
`dialog --yesno "{{¿Continuar?}}" {{7}} {{40}}`