Lines Matching +full:button +full:- +full:uid
6 . ./setup-vars
8 backtitle="An Example for the use of --inputmenu:"
10 ids=`id|sed -e 's/([^)]*)//g'`
11 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
12 gid=`echo "$ids" | sed -e 's/^.* gid=//' -e 's/ .*//'`
21 returntext=`$DIALOG --clear --ok-label "Create" \
22 --backtitle "$backtitle" "$@" \
23 --inputmenu "Originally I designed --inputmenu for a \
27 "UID:" "$uid" \
32 exec 3>&-
37 --clear \
38 --backtitle "$backtitle" \
39 --yesno "Really quit?" 10 30
51 --clear \
52 --backtitle "$backtitle" \
53 --msgbox "useradd \n\
54 -d $home \n\
55 -u $uid \n\
56 -g $gid \n\
60 tag=`echo "$returntext" |sed -e 's/^RENAMED //' -e 's/:.*//'`
61 item=`echo "$returntext" |sed -e 's/^[^:]*:[ ]*//' -e 's/[ ]*$//'`
67 UID)
68 uid="$item"
80 . ./report-button