Your IP : 216.73.216.48


Current Path : /usr/adm/scripts/
Upload File :
Current File : //usr/adm/scripts/htdig-3.2.0b6-x86_64-4

#!/bin/sh
config() {
  NEW="$1"
  OLD="`dirname $NEW`/`basename $NEW .new`"
  # If there's no config file by that name, mv it over:
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
    rm $NEW
  fi
  # Otherwise, we leave the .new copy for the admin to consider...
}
config etc/htdig/htdig.conf.new

( cd usr/lib64/htdig_db ; rm -rf libhtdb.so )
( cd usr/lib64/htdig_db ; ln -sf libhtdb-3.2.0.so libhtdb.so )
( cd usr/lib64/htdig ; rm -rf libfuzzy.so )
( cd usr/lib64/htdig ; ln -sf libfuzzy-3.2.0.so libfuzzy.so )
( cd usr/lib64/htdig ; rm -rf libht.so )
( cd usr/lib64/htdig ; ln -sf libht-3.2.0.so libht.so )
( cd usr/lib64/htdig ; rm -rf libcommon.so )
( cd usr/lib64/htdig ; ln -sf libcommon-3.2.0.so libcommon.so )
( cd usr/lib64/htdig ; rm -rf libhtnet.so )
( cd usr/lib64/htdig ; ln -sf libhtnet-3.2.0.so libhtnet.so )
( cd usr/lib64/htdig ; rm -rf libhtword.so )
( cd usr/lib64/htdig ; ln -sf libhtword-3.2.0.so libhtword.so )