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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.