Zenity question - como posso usar a entrada do usuário?

4

Eu quero fazer uma pergunta sobre zenity que vai além, dependendo da resposta que você escolher.

A pergunta no meu script é:

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

_

Script completo

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

Como posso conseguir isso?

    
por EraySP909 19.04.2017 / 16:58

1 resposta

6

zenity --question retornará a resposta do usuário em seu código de saída. Você pode coletá-lo a partir da variável $? special, assim

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

ou usá-lo diretamente em uma condição como esta

if zenity --question --text="Do you want to answer stupid questions?"
then 
    zenity --entry --text="Why?"
fi
    
por Tilman 19.04.2017 / 17:16