![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need help with script for menu | sinjin | Shell Programming and Scripting | 0 | 12-10-2007 03:27 PM |
| Creating a menu within a script file | sinjin | Shell Programming and Scripting | 8 | 12-10-2007 01:18 AM |
| Menu Script question | lanmanb4 | UNIX for Dummies Questions & Answers | 2 | 07-28-2005 10:08 AM |
| Menu script | Ypnos | Shell Programming and Scripting | 9 | 07-02-2003 04:25 PM |
| Changing korn shell script text Menu colors? | darthur | UNIX for Dummies Questions & Answers | 6 | 01-20-2002 07:15 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
dialog menu script. please HELP
hello.
i want to create a useradd dialog menu. i cannot make a single menu with 4 box inputs ( user, pass, fullname, shell ) because the dialog utility is either limited or either i know to less about using the dialog utility. from what i see it only allows me to post these 4 boxes one by one, i mean first i input the user, i hit enter, a new dialog box apears for password, again i hit enter for fullname, etc. can't i just use dialog to build more boxes in a single menu interface ? like anaconda does on redhat for example. thanks. |
|
||||
|
dialog with mixedform option
Most probably you don't need it anymore but maybe it will help to other guys. Here is a sample how it can be done :
Code:
/usr/bin/dialog --title "Mixed Form" --backtitle "Mixed Form" --insecure \
--mixedform "This is simple mixedform :" 15 50 0 \
"User name : " 1 1 "user" 1 20 20 0 0 \
"Password :" 2 1 "pass1" 2 20 20 0 1 \
"Retype Password :" 3 1 "pass2" 3 20 20 0 1 2> /tmp/file
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|