web-dev-qa-db-ja.com

Zenityの質問-ユーザー入力を使用するにはどうすればよいですか?

選択した答えに応じて、さらに詳細な質問をしたいと思います。

私のスクリプトの質問は次のとおりです。

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

どうすればこれを達成できますか?

4
EraySP909

zenity --questionは、終了コードでユーザーの回答を返します。次のように、$?特殊変数から収集できます

zenity --question --text="Are you there?"
THERE=$?

または、このような条件で直接使用します

if zenity --question --text="Do you want to answer stupid questions?"
then 
    zenity --entry --text="Why?"
fi
6
Tilman