aboutsummaryrefslogtreecommitdiff
path: root/unix/hlib/util.csh/pkgdel
blob: fc8843d362e9f3d7c6933296a528cc95b392e83f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/csh -f
#
#  PKGDEL -- Delete an external package from the dynamic directory.
#
#


set  bindir	= "`dirname $0`"	# get iraf root
set  irafdir	= $bindir:h



if (-e $1) then
    /bin/rm -rf $1		>& /dev/null
endif

exit 0