How to display command output in a whiptail textbox
问题 The whiptail command has an option --textbox that has the following description: --textbox <file> <height> <width> The first option requires a file as input; I would like to use the output of a command in its place. It seems like this should be possible in sh or bash. For the sake of the question, let's say I'd like to view the output of ls -l in a whiptail textbox. Note that process substitution does not appear to work in whiptail (e.g. whiptail --textbox <(ls -l) 40 80 does not work. This