Use the --entry option to create a text entry dialog. Zenity returns the contents of the text entry to standard output.
Tekstinsyöttöikkuna tarjoaa seuraavat valitsimet:
Määrittää tekstin, joka näkyy tekstinsyöttöikkunassa.
Määrittää tekstin, joka näytetään syöttökentässä teksinsyöttöikkunassa.
Piilottaa tekstin syöttökentässä tekstinsyöttöikkunassa.
The following example script shows how to create a text entry dialog:
#!/bin/sh if zenity --entry \ --title="Add new profile" \ --text="Enter name of new profile:" \ --entry-text "NewProfile" then echo $? else echo "No name entered" fi
Haluatko kommentoida? Huomasitko virheen? Oliko ohje epäselvä? Lähetä palautetta tästä sivusta.