mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
17 lines
362 B
Markdown
17 lines
362 B
Markdown
![]() |
# dialog
|
||
|
|
||
|
> Display dialog boxes on the terminal.
|
||
|
> More information: <https://manned.org/dialog>.
|
||
|
|
||
|
- Display a message:
|
||
|
|
||
|
`dialog --msgbox "{{Message}}" {{height}} {{width}}`
|
||
|
|
||
|
- Prompt the user for text:
|
||
|
|
||
|
`dialog --inputbox "{{Enter text:}}" {{8}} {{40}} 2>{{output.txt}}`
|
||
|
|
||
|
- Prompt the user for a yes/no question:
|
||
|
|
||
|
`dialog --yesno "{{Continue?}}" {{7}} {{40}}`
|