dialog

Display user-friendly message boxes and dialogs from shell scripts

brewmacoslinux
Try with needOr install directly
Source

About

Display user-friendly message boxes from shell scripts

Commands

dialog

Examples

Display a simple message box$ dialog --msgbox 'Hello World' 10 40
Show a yes/no confirmation dialog$ dialog --yesno 'Do you want to continue?' 10 40
Create a text input dialog with default value$ dialog --inputbox 'Enter your name:' 10 40 'John'