home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume11 / menu_mh / part01 / README < prev    next >
Encoding:
Text File  |  1990-03-10  |  610 b   |  24 lines

  1.   dumb_menu - executes a simple minded menu
  2.  
  3.   Theory of operation: The program reads and parses a menu
  4.   definition file and then loops until the user quits.  Menus
  5.   are not pretty - simply numbered options with Q for quit to
  6.   exit.
  7.  
  8.   The menu definition file consists of a title statement
  9.   followed by zero or more options followed by one or item
  10.   definitions.
  11.  
  12.  
  13.        title { this is a Title }
  14.  
  15.        bold clear always-show
  16.  
  17.        item { this is a prompt } { echo "$FOO $BAR" }
  18.        parm "FOO" { prompt for FOO }
  19.        parm "BAR" { prompt for BAR }
  20.        ;
  21.  
  22. Mike Howard
  23. how@milhow1.uunet.uu.net
  24.