home *** CD-ROM | disk | FTP | other *** search
- niunparse
- =========
-
- Below is a 'csh' script, called 'niunparse' that uses 'niutil' to read the
- netinfo database and then writes to standard output (in the form of a 'csh'
- script) the 'niutil' commands necessary to generate that netinfo database.
-
- For example, with no arguments, 'niunparse' generates:
- #!/bin/csh -fe
- set noglob
- niutil -createprop . / master localhost/local
- niutil -create . /screens
- niutil -createprop . /screens name screens
- niutil -create . /screens/MegaPixel
- niutil -createprop . /screens/MegaPixel name MegaPixel
- niutil -createprop . /screens/MegaPixel active 0
- niutil -createprop . /screens/MegaPixel bounds 0 1120 0 832
- niutil -create . /screens/MegaPixel
- niutil -createprop . /screens/MegaPixel name MegaPixel
- niutil -create . /machines
- niutil -createprop . /machines name machines
- niutil -create . /machines/localhost
- niutil -createprop . /machines/localhost name localhost
- niutil -createprop . /machines/localhost ip_address 127.0.0.1
- niutil -createprop . /machines/localhost serves ./local
- ...
- and so forth for the entire netinfo database.
-
-