#!/bin/bash
array=$(yad \
--separator="\n" \
--form \
--field="Number":NUM 1 \
--field="Text":TEXT \
--button="b1:1" \
--button="b2:2" \
--button="b3:3" )
echo $?
echo "${array[@]}"
When pressing b1 or b3, the array is empty. Why? How to modify this to get always the answer of NUM- and TEXT-form-field in the array and the button number as $? ?
From the manpage:
So, you need to use even exit codes for your buttons
edit:
I was looking for a way to robustly load
yad
's output into a bash array, but the--separator
option doesn't seem to support thenull byte
. There is however a--quoted-output
for shells that you can use witheval
:No character in the
[0x01-0x7f]
range can break it, so it is safe.