home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # this script expects the name of the source directory
-
- PATH=/bin:/usr/bin:/usr/sbin
-
- ans=`/usr/sbin/confirm -b "No" -b "Yes" \
- -t "Do you really want to remove $1 source?"`
-
- case $ans
- in
- Yes) ./removeit $1 ;;
- *) exit 0 ;;
- esac
-