home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / UNIX / SAMBA / SOURCE / SAMBA.TAR / samba-1.9.17 / source / uninstallman.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-07-04  |  844b  |  32 lines

  1. #!/bin/sh
  2. #4 July 96 Dan.Shearer@UniSA.edu.au
  3.  
  4. MANDIR=$1
  5. SRCDIR=$2
  6.  
  7. echo Uninstalling man pages from $MANDIR
  8.  
  9. for sect in 1 5 7 8 ; do
  10.   for m in $MANDIR/man$sect ; do
  11.     for s in $SRCDIR../docs/*$sect; do
  12.       FNAME=$m/`basename $s`
  13.       if test -f $FNAME; then
  14.         echo Deleting $FNAME
  15.         rm -f $FNAME 
  16.         test -f $FNAME && echo Cannot remove $FNAME... does $USER have privileges?   
  17.       else
  18.         echo $FNAME does not exist! Check defines in the Makefile
  19.       fi
  20.     done
  21.   done
  22. done
  23.  
  24. cat << EOF
  25. ======================================================================
  26. The man pages have been uninstalled. You may install them again using 
  27. the command "make installman" or make "install" to install binaries,
  28. man pages and shell scripts.
  29. ======================================================================
  30. EOF
  31. exit 0
  32.