home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh -f
- if ( `versions netscape | grep "1.12IS" | wc -l` > 0 ) then
- echo ""
- echo ""
- echo "Remove Netscape (y/n)? \c"
- set ans=($<)
- if ( $ans != 'y' ) then
- echo " "
- echo "... Bye."
- sleep 3
- exit
- else
- echo " "
-
- echo "Removing Netscape. Please wait, this will take a few minutes..."
- echo " "
- versions remove netscape
- echo " "
- echo "Done!"
- echo " "
- endif
- else
- echo ""
- echo ""
- echo "It appears that Netscape 1.12IS is not currently installed."
- echo "Exiting..."
- echo ""
- echo ""
- echo "Press Enter to exit this window... \c"
- set a = $<
-
-