The whiptail command has a --textbox
option
A text box lets you display the contents of a text file in a dialog box
I would like to use the output of a command in its place (yup, that's the same question posted here), but the difference is that when I run the command in the response (not the same) whiptail --textbox /dev/stdin 30 60 <<< "$(echo Hello)"
I get an empty textbox as you can see here.
Which other ways could you handle the output of a command as a file?
Thank you!