home *** CD-ROM | disk | FTP | other *** search
- ###########################################################################
- # awkzilla.awk - file to get Mozilla's prefs to the cd. #
- # #
- # invoke it with: #
- # #
- # $DMTOOLSDIR/bin/nawk -f $DMTOOLSDIR/bin/awkzilla.awk \ #
- # $HOME/.netscape-preferences > $HOME/.netscape-preferencdm01 #
- # #
- # This is an awk script. Well nawk really. We should place nawk on the #
- # CD just to be sure this functions. #
- ###########################################################################
-
- {
- gsub(/SHOW_URL:.*/, "SHOW_URL:\t\t" "False" )
- gsub(/SHOW_DIRECTORY_BUTTONS:.*/, "SHOW_DIRECTORY_BUTTONS:\t" "False" )
- gsub(/HOME_DOCUMENT:.*/, "HOME_DOCUMENT:\t\t" "file\:\/\/" ENVIRON["ROOTDIRECTORY"] "\/HTML\/index.html" )
- gsub(/PERSONAL_MIME_TYPES:.*/, "PERSONAL_MIME_TYPES:\t" ENVIRON["DMTOOLSDIR"] "\/demos\/netscape\/mime.types.dm01")
- gsub(/PERSONAL_MAILCAP:.*/, "PERSONAL_MAILCAP:\t" ENVIRON["DMTOOLSDIR"] "\/demos\/netscape\/mailcap.dm01")
- print $0
- }
-