Sponsored Content
Top Forums Shell Programming and Scripting Select answers from multiple questions using shell script Post 302914269 by Scrutinizer on Sunday 24th of August 2014 05:58:16 AM
Old 08-24-2014
Try:
Code:
awk -F'[.,:]' '           # Use dot, command and colon as fields separator
  /^[A-E]\./ {            # Store the choices in array A with index the first field (letter A-E)
    i=$1
    $1=x
    A[i]=$0
  }
  /^Answer/ {             # If line starts with "Answer" then print the valid choices
    for(i=2; i<=NF; i++)
      print $i"." A[$i]
    print x               # Print an empty line
  }
  /^Question/             # If line starts with "Question" then print the question
' file


Last edited by Scrutinizer; 08-24-2014 at 07:05 AM..
This User Gave Thanks to Scrutinizer For This Post:
 

9 More Discussions You Might Find Interesting

1. Solaris

expecting answers for these questions?

hi all plese clarify me in the following area. 1. What is the default NFS version in solaris 5.10. If it is 3, then why it asks me to specify "-o vers=3" keyword while i am mounting a share from a RHEL 5.1 Server? 2. Can someone give the link to download packages for accessing "ntfs"... (4 Replies)
Discussion started by: kingston
4 Replies

2. Solaris

solaris 10 OS administration interview questions and answers

Hello, I am new to this forum and I am preparing for interview .Kindly can anybody send me Solaris 10 OS administration interview questions and answers (2 Replies)
Discussion started by: meet2muneer
2 Replies

3. Solaris

Please give answers for this interview questions

I was not able to get answers for these interview questions. It will be appreciable and useful if any one answers this questions. (5 Replies)
Discussion started by: Sesha
5 Replies

4. UNIX for Dummies Questions & Answers

Homework questions, book is lacking answers?

Hey you guys, There's a couple questions I cannot find the answers to anywhere in this book for my Operating Systems class, hopefully you guys could help. I believe we are in the Bourne shell. 1. Match each description to the appropriate type of variable Used in shell programs ... (7 Replies)
Discussion started by: KyleBucket
7 Replies

5. Post Here to Contact Site Administrators and Moderators

Eric's Questions and Answers Blog

I hope this is ok so I will ask if I may use this thread to ask questions about programming. May I use this thread to ask questions and answer questions? If the answer is yes, this is a thread made for minimizing the amount of threads I post to ask questions about programming. Please feel... (3 Replies)
Discussion started by: Errigour
3 Replies

6. UNIX for Advanced & Expert Users

Interview questions and answers on HP Unix administration

Hi, Can some body help me to get Interview questions and answers on HP Unix administration? Thanks Krsnadasa (1 Reply)
Discussion started by: krsnadasa
1 Replies

7. Shell Programming and Scripting

Bash script to give multiple choices and a varying number of answers

Hello everybody, I use `case' quite a lot but , excellent as it is , it only gives one final result ; can anyone suggest a way whereas , say long lists of choices are given and I , or a user could select either one two or any number of results to be echoed . many thanks in... (3 Replies)
Discussion started by: V686
3 Replies

8. UNIX for Beginners Questions & Answers

Answers for few objective questions.

Hi Unix geniuses, I need your help for the answers of few objective Q&A. i dont know if my answers are correct or not. So i really need your help to provide the answers which will help me in unix programming. (1 Reply)
Discussion started by: Vivekit82
1 Replies

9. What is on Your Mind?

Answers to Recently Asked Questions about UNIX.COM

Here are some answers to some of the recent questions I have received about UNIX.COM. So, I thought I would take time to answer them here in this post: Is it expected that the original poster "thank" everyone who responds to his / her discussion thread? It is always a good practice in all... (7 Replies)
Discussion started by: Neo
7 Replies
MacPerl(3)						User Contributed Perl Documentation						MacPerl(3)

NAME
MacPerl - Built-in Macintosh specific routines. SYNOPSIS
$phone = MacPerl::Ask("Enter your phone number:"); MacPerl::Answer("Nunc et in hora mortis nostrae", "Amen"); $color = MacPerl::Pick("What's your favorite color baby ?", "Red", "Green", "Gold"); MacPerl::SetFileInfo("MPS ", "TEXT", yin, yang); MacPerl::GetFileInfo(yin); MacPerl::Quit(kMacPerlAlwaysQuit); FUNCTIONS
MacPerl::Answer(PROMPT) MacPerl::Answer(PROMPT,BUTTON1) MacPerl::Answer(PROMPT,BUTTON1,BUTTON2) MacPerl::Answer(PROMPT,BUTTON1,BUTTON2,BUTTON3) Presents to the user a dialog with 1, 2, or 3 buttons. Examples: MacPerl::Answer("Nunc et in hora mortis nostrae", "Amen"); always returns 0. MacPerl::Answer("I refuse"); is equivalent to "MacPerl'Answer("I refuse", "OK");" MacPerl::Answer("Delete hard disk ?", "OK", "Cancel"); returns 1 for OK, 0 for Cancel MacPerl::Answer("Overwrite existig file", "Overwrite", "Skip", "Cancel"); returns 2 for Overwrite, 1 for Skip, 0 for Cancel MacPerl::Ask(PROMPT, DEFAULT) MacPerl::Ask(PROMPT) Asks the user for a string. A default value may be given. Returns undef if the dialog is cancelled. Example: $phone = MacPerl::Ask("Enter your phone number:"); $name = MacPerl::Ask("Enter your first name", "Bruce"); Useful for Australian database applications MacPerl::Pick(PROMPT, VALUES) Asks the user to pick a choice from a list. VALUES is a list of choices. Returns undef if the dialog is cancelled. Examples: $color = MacPerl::Pick("What's your favorite color baby ?", "Red", "Green", "Gold"); MacPerl::SetFileInfo(CREATOR,TYPE,FILE...) Changes the file types and creators of the file(s). Examples: MacPerl::SetFileInfo("MPS ", "TEXT", yin, yang); Turn yin and yang into MPW text files MacPerl::GetFileInfo(FILE) In scalar context, returns the file type. In array context, returns (creator,type). Examples: MacPerl::GetFileInfo(yin); Returns "TEXT" or ("MPS ", "TEXT"). MacPerl::DoAppleScript(SCRIPT) Execute an AppleScript script. Returns the text of the script result. Script error strings are returned in $@. Example: my $text = MacPerl::DoAppleScript(<<END_SCRIPT) or die $@; tell application "BBEdit" make new Window copy "Inserting text the hard way." to character 1 of front Window get (characters 1 through 9 of front Window) as text end tell END_SCRIPT Note: calling DoAppleScript to tell MacPerl to do something via AppleScript may yield unpredictable results, especially when waiting on MacPerl to reply, such as when stringing multiple events together, or expecting data to be returned. Try wrapping the "tell" block in "ignoring application responses" / "end ignoring" if necessary. MacPerl::Reply(ANSWER) Reply to current DoScript request. Useful if you are calling Perl scripts from other applications. MacPerl::Quit(LEVEL) Mac OS only. If LEVEL is 0, don't quit after ending the script. If 1, quit if running under a runtime version, if 2, always quit. If LEVEL is 3, quit if this was the first script to be run since starting MacPerl. MacPerl::LoadExternals(LIBFILE) Mac OS only. Load XCMD and XFCN extensions contained in file LIBFILE, which is searched along the same path as it would be for a require. The extensions are made accessible in the current package, unless they containing an explicit package name. MacPerl::FAccess(FILE, CMD, ARGS) Mac OS only. When called from the tool, manipulate various information of files. To get the command constants, it's convenient to require "FAccess.ph". $TAB = MacPerl::FAccess(FILE, F_GTABINFO) MacPerl::FAccess(FILE, F_STABINFO, TAB) Manipulate tabulator setting (in spaces per tab). ($FONTNAME, $FONTSIZE) = MacPerl::FAccess(FILE, F_GFONTINFO) $FONTNUM = MacPerl::FAccess(FILE, F_GFONTINFO) MacPerl::FAccess(FILE, F_SFONTINFO, FONT [, SIZE]) Manipulate font and size information. Both font names and font numbers are accepted for F_SFONTINFO; F_GFONTINFO returns a font name in an array context, a font number in a scalar context. ($STARTSEL, $ENDSEL, $DISPLAYTOP) = MacPerl::FAccess(FILE, F_GSELINFO) $STARTSEL = MacPerl::FAccess(FILE, F_GSELINFO) MacPerl::FAccess(FILE, F_SSELINFO, $STARTSEL, $ENDSEL [, $DISPLAYTOP]) Manipulate the MPW selection of a file. ($LEFT, $TOP, $RIGHT, $BOTTOM) = MacPerl::FAccess(FILE, F_GWININFO) =item $TOP = MacPerl::FAccess(FILE, F_GWININFO) =item MacPerl::FAccess(FILE, F_SWININFO, LEFT, TOP [, RIGHT, BOTTOM]) Manipulate the window position. MacPerl::MakeFSSpec(PATH) This command encodes a path name into an encoding (volume #, directory #, File name) which is guaranteed to be unique for every file. Don't store this encoding between runs of MacPerl! MacPerl::MakePath(FSSPEC) The inverse of MacPerl::MakeFSSpec(): turn an encoding into a path name. MacPerl::Volumes() In scalar context, return the FSSPEC of the startup volume. In list context, return FSSPECs of all volumes. SEE ALSO
macperl perl v5.18.2 2009-09-07 MacPerl(3)
All times are GMT -4. The time now is 04:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy