#!/bin/sh

dir_list=`echo *`

for item in $dir_list
do

if [ -L $item ] ; then
	echo "deleting $item"
	rm -f $item
fi

done
