0

我将 Yad 用于一个简单的界面。

我遇到的问题是,如果我在字段本身中按 Enter,则标准输出具有 User 字段的值。但是,如果我按下“保存”按钮,则标准输出中没有任何内容。

这是脚本!

res=$(yad \
--width=600 \
--title="Config" \
--text="COnfiguration options" \
--form \
--field="User" \
--button="Save:1" \
--button="Cancel:2" \
--center)

ret=$?
echo $ret
echo $res
4

1 回答 1

0

我应该学习如何阅读手册页的最后一行......

偶数退出码意味着打印结果,奇数只返回退出码。

做就是了:

res=$(yad \
--width=600 \
--title="Config" \
--text="COnfiguration options" \
--form \
--field="User" \
--button="Save:2" \
--button="Cancel:1" \
--center)

ret=$?
echo $ret
echo $res

我将获得退出代码为 0 和 2 的数据——这就是我想要的

于 2016-02-27T01:31:41.773 回答