web-dev-qa-db-fra.com

Question Zenity - comment utiliser les entrées utilisateur?

Je veux faire une question zenity qui va plus loin en fonction de la réponse que vous choisissez.

La question dans mon script est:

zenity --question --text="Would you like to participate in a little form?" 

_

Script complet

#!/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

Comment puis-je atteindre cet objectif?

4
EraySP909

zenity --question renverra la réponse de l'utilisateur dans son code de sortie. Vous pouvez le collecter à partir de la variable spéciale $?, comme suit

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

ou l'utiliser directement dans un conditionnel comme celui-ci

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