I have a script that makes a GUI list here:

zenity  --list --text="Choose action" --column= --hide-header opt1 opt2 opt3

How can I make this output be assigned to a variable?

有帮助吗?

解决方案

OUT=$(zenity --list --text="Choose action" --column= --hide-header opt1 opt2 opt3)

This will assign the output to $OUT.

The $() operator performs Command Substitution, i.e. allows the output of a command to replace the command itself.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top