freebsd-ports/java/shujit/pkg-deinstall
2003-02-25 13:26:06 +00:00

14 lines
205 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
linkfile="${PKG_PREFIX}/etc/shujit-links"
if [ -f "${linkfile}" ]
then
cat "${linkfile}" | while read link
do
rm -f "${link}"
done
rm -f "${linkfile}"
fi