summaryrefslogtreecommitdiff
path: root/help/C/l10n_scripts/text_entry.sh
blob: 4afd006e95cf9958ff5cd53d680a6e4d165b64af (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

                if zenity --entry \
                --title="Add an Entry" \
                --text="Enter your _password:" \
                --entry-text "password" \
                --hide-text
                  then echo $?
                  else echo "No password entered"
                fi