#!/bin/bash
RESULT=$(find "$@" -type f |grep -v CVS | xargs ls -t)
[ $? -ne 0 ] && echo "Error: $@"
TOP=$(echo -e "${RESULT}" | head -n1)
if [ "x${TOP/*\/}" != "xManifest" ]; then
	echo $@
fi
