:

# runs find on the named directory looking for files with x permissions

if [ $# = 0 ]
then
	echo Usage: `basename $0` directory
	exit
fi
find $* -type f \( -perm -1 -o -perm -10 -o -perm -100 \) -print
