home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Tools / netinfo / niunparse.README < prev    next >
Encoding:
Text File  |  1993-04-26  |  1.1 KB  |  29 lines

  1. niunparse
  2. =========
  3.  
  4. Below is a 'csh' script, called 'niunparse' that uses 'niutil' to read the
  5. netinfo database and then writes to standard output (in the form of a 'csh'
  6. script) the 'niutil' commands necessary to generate that netinfo database.
  7.  
  8. For example, with no arguments, 'niunparse' generates:
  9.     #!/bin/csh -fe
  10.     set noglob
  11.     niutil -createprop . / master localhost/local 
  12.     niutil -create . /screens
  13.     niutil -createprop . /screens name screens 
  14.     niutil -create . /screens/MegaPixel
  15.     niutil -createprop . /screens/MegaPixel name MegaPixel 
  16.     niutil -createprop . /screens/MegaPixel active 0 
  17.     niutil -createprop . /screens/MegaPixel bounds 0 1120 0 832 
  18.     niutil -create . /screens/MegaPixel
  19.     niutil -createprop . /screens/MegaPixel name MegaPixel 
  20.     niutil -create . /machines
  21.     niutil -createprop . /machines name machines 
  22.     niutil -create . /machines/localhost
  23.     niutil -createprop . /machines/localhost name localhost 
  24.     niutil -createprop . /machines/localhost ip_address 127.0.0.1 
  25.     niutil -createprop . /machines/localhost serves ./local 
  26.     ...
  27. and so forth for the entire netinfo database.
  28.  
  29.