fixup-install.sh
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # A shell script that is run by the installation process and then deleted.
  4. #
  5. # Usage: fixup-install.sh SPOOLDIR LOCALHOST
  6. #
  7. spooldir=$1
  8. localhost=$2
  9. for file in htdig/conf/* ; do
  10.     sed -e "s%SPOOLDIR%$spooldir%g" -e "s%LOCALHOST%$localhost%g" < $file > $file.tmp
  11.     mv $file.tmp $file
  12. done
  13. for file in htdig/scripts/* ; do
  14.     sed -e "s%SPOOLDIR%$spooldir%g" -e "s%LOCALHOST%$localhost%g" < $file > $file.tmp
  15.     mv $file.tmp $file
  16.     chmod 755 $file
  17. done
  18. for file in wwwoffle.pac ; do
  19.     sed -e "s%SPOOLDIR%$spooldir%g" -e "s%LOCALHOST%$localhost%g" < $file > $file.tmp
  20.     mv $file.tmp $file
  21. done