home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh -f
-
- set INST_PATH=/usr/lib/RapidApp
- set INST_DIR=RapidApp
- if ( `versions RapidApp.sw | grep RapidApp | wc -l` == 0 ) then
- goto NO_INSTALL
- else
- echo "About to remove the entire $INST_DIR installation."
- LOOP2:
- echo " "
- echo "Continue (y/n)? \c"
- set a = $<
- if ( $a == 'n' ) then
- exit -1
- else if ( $a == 'y' ) then
- else
- goto LOOP2
- endif
- NO_INSTALL:
- if ( -e $INST_PATH ) then
- versions remove $INST_DIR
- echo " "
- echo "Removal Complete\!"
- echo " "
-
- else
- echo " "
- echo "RapidApp is not currently installed."
- echo " "
- endif
- endif
- echo "Press Enter to exit this window... \c"
- set a = $<
-
-