#! /bin/ksh

allowed="[-a-zA-Z0-9_.]"
nostart="[-.]"

notallowed="[, &'()!]"
find . -name "*$notallowed*" -print
	#sed -e "s/\&/-/g" -e "s/$notallowed/_/g"

exit

find . -print |
	sed "s/$allowed//g"

