home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 12 / Silicon_Graphics_Developer_Magic_Soft_Dev_812-8101-012.iso / .all / bin / awkzilla.awk next >
Encoding:
Text File  |  1995-11-17  |  1.3 KB  |  21 lines

  1. ###########################################################################
  2. # awkzilla.awk - file to get Mozilla's prefs to the cd.                   #
  3. #                                                                         #
  4. # invoke it with:                                                         #
  5. #                                                                         #
  6. # $DMTOOLSDIR/bin/nawk -f $DMTOOLSDIR/bin/awkzilla.awk \                  #
  7. #       $HOME/.netscape-preferences > $HOME/.netscape-preferencdm01       #
  8. #                                                                         #
  9. # This is an awk script.  Well nawk really. We should place nawk on the   # 
  10. # CD just to be sure this functions.                                      #
  11. ###########################################################################
  12.  
  13. {
  14. gsub(/SHOW_URL:.*/, "SHOW_URL:\t\t" "False" )
  15. gsub(/SHOW_DIRECTORY_BUTTONS:.*/, "SHOW_DIRECTORY_BUTTONS:\t" "False" )
  16. gsub(/HOME_DOCUMENT:.*/, "HOME_DOCUMENT:\t\t" "file\:\/\/" ENVIRON["ROOTDIRECTORY"] "\/HTML\/index.html" )
  17. gsub(/PERSONAL_MIME_TYPES:.*/, "PERSONAL_MIME_TYPES:\t" ENVIRON["DMTOOLSDIR"] "\/demos\/netscape\/mime.types.dm01")
  18. gsub(/PERSONAL_MAILCAP:.*/, "PERSONAL_MAILCAP:\t" ENVIRON["DMTOOLSDIR"] "\/demos\/netscape\/mailcap.dm01")
  19. print $0
  20. }
  21.