#!/bin/sh

for i in * ; do
	if [ "`grep $i ls-lR`" = "" ] ; then
		if [ "$i" != "ls-lR" ] ; then
			rm -f $i
		fi
	fi
done
