# NOTE this does NOT work in conjunction with -print0
find "$@" |
while read A; do
	if [ -d "$A" ]; then
		echo "$A/"
	else
		echo "$A"
	fi
done
