Selectable numeric text menu from file possible?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Selectable numeric text menu from file possible?
# 1  
Old 09-02-2008
Selectable numeric text menu from file possible?

Is there a way i can take 'lets say the etc/group file' and arange the group names into a selectable numeric menu eg;

1) root:0
2) other:1
3) bin:2
4) sys:3
.....
.....
.....
and so on

then

GROUP="group name of users selection"

i have tried for over an hour searching on google but i have no idea what i'm trying to find!

I found a post on this the other day while looking for something else but didn't need it at the time and now i cant find it again.

This seems to happen alot.

Thanks in advance guys.
# 2  
Old 09-02-2008
Code:
select group in `cut -d: -f1,3 /etc/group`; do
  echo ${group%:*}
done

# 3  
Old 09-02-2008
I'm sorry i have only been at this for a week and i have no idea what you mean.
# 4  
Old 09-02-2008
Bug

Hey, era, that's way cool. I didn't know that nifty command was around. Anyway, You can set PS3 to be a more "meaningful" prompt, like this:

Code:
PS3="Enter a number above, then hit CTRL-D > "

Then run Era's code. I believe that's what you asked for.
# 5  
Old 09-02-2008
Hey thatnks for that guys works good.

It didn't work the first time i tried it then i worked out the selcet is only in the ksh and i was running sh.

thanks again
# 6  
Old 09-03-2008
I'm trying to understand the modification of the

${group%:*}

to reverse it so i only the the ID portion of the select instead of the group name.
# 7  
Old 09-03-2008
It's documented in your shell's manual page. ${var#pattern} returns $var with pattern removed from the beginning, ${var%pattern} returns $var with pattern removed from the end. The pattern can contain shell wildcards (?, [abc], *) but is otherwise just a string.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Listing Option Menu Choices from Text File

Hello, I am starting up a tool and one of the initial steps is to select a site/location which is being read from a text file. Here is the text file contents: site1 site2 site3 Here is the code: #!/usr/bin/python from Tkinter import * (3 Replies)
Discussion started by: tattoostreet
3 Replies

2. Programming

C++ Get text and numeric value from a string

I have a string opt="row234" I want to put "row" in a string and 234 in an int. In general it should be opt="textnum" I want to store text in a string and num in an int. (6 Replies)
Discussion started by: kristinu
6 Replies

3. Shell Programming and Scripting

Sum numeric columns contained in a plain text file

Hi everyone, Here are the contents of a plain text file created by a SQL query: SUM(T.TRNQTY) COUNT(D.TRNSEQ) ---------------- ---------------- 1380 46 1393 59 2680 134 740 37 ... (5 Replies)
Discussion started by: gacanepa
5 Replies

4. Shell Programming and Scripting

Script to call a menu script and redirect each option to a text file

Hello, I want to design a script that will call an existing menu script and select options one by one and redirict the out put to a file. For example;- In the script MENU.sh there are 10 options i want to design a script MENU2.sh that will select option 2 3 4 6 7 10 and redirict the output... (4 Replies)
Discussion started by: spradha
4 Replies

5. Shell Programming and Scripting

Perl simple text menu with options

Hopefully I'm in the right place. Im new to the forums and linux! I'm looking to add a menu to my perl hangman game i have created. The menu will use user input for the desired option and then perform the operation indicated. I would like something along the lines of: Welcome to Hangman... (1 Reply)
Discussion started by: jahburmski
1 Replies

6. Shell Programming and Scripting

conditional Testing numeric and text values problems

hi, when i type in a value higher than 20 it will show me the validation but if i put a negative figure it just goes goes blank where i just keep typing and nothing happens so i had to control c to exit out the process, can someone help me please. clear read -p "please enter... (2 Replies)
Discussion started by: bassmasta1
2 Replies

7. Shell Programming and Scripting

Perl code to differentiate numeric and non-numeric input

Hi All, Is there any code in Perl which can differentiate between numeric and non-numeric input? (11 Replies)
Discussion started by: Raynon
11 Replies

8. Shell Programming and Scripting

blink / flash echo text in a menu

I have a ksh script that is a login menu for my end users. I would like to have one line of the welcome message flash when there is a system notice about an impending outage. The welcome message is a series of echo statements which prints a text file "msg of the day" with the status msg. I tried... (1 Reply)
Discussion started by: MizzGail
1 Replies

9. Programming

Selectable Id

If we want to determine that amongst many descriptors which one is set ready for reading , ready for writing or has an error condition pending we use the select () utility.I would like to know can we have some technique by which we will be able to determine which amongst many IPC ids is ready for... (0 Replies)
Discussion started by: S.P.Prasad
0 Replies

10. UNIX for Dummies Questions & Answers

Changing korn shell script text Menu colors?

Is it possible to change the color of text in a korn shell script Menu? I can change the color of session text through my telnet client but I want to be able to change color text in the Korn shell menu to highlight certain items. (6 Replies)
Discussion started by: darthur
6 Replies
Login or Register to Ask a Question