我想根据您选择的答案提出一个更深入的问题。
我脚本中的问题是:
zenity --question --text="Would you like to participate in a little form?"
_
完整脚本
#!/bin/bash
if [ "$(whoami)" != "root" ]; then
echo "Put this is /sbin/ and chmod 755 it."
else
zenity --info --text="Hi! Welcome to !!Name yet to be found!!"
sleep 0.5
zenity --question --text="Would you like to participate in a little form?"
sleep 1
zenity --info --text="Getting important run files"
wget
sleep 1
zenity --info --text="Done!"
sleep 1
zenity --info --text="I will this program will move to /sbin/ and chmod
775 it for you!
No need to thank me.
My program creator made me this way :("
sudo chmod 755 ~/!!!
mv ~/!!! /sbin/
sleep 1
zenity --info --text="Done!"
sleep 2
sudo xdg-open /sbin
zenity --info --text="Well look for yourself!"
sleep 10
zenity --info --text="Dont rerun this file!"
echo
zenity --info --text="This is just the install part."
fi
我怎样才能做到这一点?
zenity --question
将在其退出代码中返回用户的答案。您可以从$?
特殊变量中收集它,就像这样或直接在这样的条件下使用它