home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Frameworks / Perl-5.004_04.3-MIS / Perl.pkg / Perl.post_delete < prev    next >
Encoding:
Text File  |  1998-04-24  |  280 b   |  25 lines

  1. #!/bin/sh
  2.  
  3. PKG_DIR=$1
  4. INSTALL_DIR=${2-/LocalLibrary/Frameworks}
  5. LINK_DIR=/usr/local/bin
  6. PWD=`pwd`
  7.  
  8. # Let's remove a few symbolic links in LINK_DIR 
  9. LINKS='perl perl5 perl5.00404'
  10.  
  11. echo
  12.  
  13. set -x
  14.  
  15. cd $LINK_DIR
  16. for prog in $LINKS ;   do
  17.   rm -f $prog
  18. done
  19.  
  20. set -
  21.  
  22. cd $PWD
  23.  
  24. echo done.
  25.