home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / tinymud2.zip / JOINSPL.SH < prev    next >
Linux/UNIX/POSIX Shell Script  |  1990-09-02  |  338b  |  16 lines

  1. #! /bin/sh
  2. #
  3. # join split lines in the config.h and small.db files
  4. #
  5. echo creating config.h
  6. sed -f comb.sed config_h.spl >config.h
  7. echo creating small.db
  8. sed -f comb.sed smalldb.spl >small.db
  9. rm config_h.spl smalldb.spl
  10. #
  11. # build tinymud.ps from its three parts
  12. #
  13. echo creating tinymud.ps
  14. cat tinymud.ps.xa? >tinymud.ps
  15. rm tinymud.ps.xa?
  16.