YAD - 终止 Bash 脚本

YAD - 终止 Bash 脚本

我在用着亚德在 bash 脚本中创建“是”或“否”对话框:

yad --image "dialog-question" --title "Alert" --button=gtk-yes:0 --button=gtk-no:1 --text "Are you sure you want to do this?"

如果我对问题单击“否”,我希望 bash 脚本终止。如果我单击“是”,我希望执行 bash 脚本中的其余操作。

我应该添加什么代码来完成此操作?

答案1

这是一个完整的工作示例:

if yad \
    --image "dialog-question" \
    --title "Alert" \
    --button=gtk-yes:0 \
    --button=gtk-no:1 \
    --text "Are you sure you want to do this?"
then
    do_the_rest...
    ...
    ...
else
    exit 1
fi

相关内容