#	usage: distinct1
#	reads standard input and reports list of alphanumeric strings 
#	that differ only in case, giving lower-case form of each
tr -cs 'A-Za-z0-9' '\012' | sort -u | tr 'A-Z' 'a-z' | sort | uniq -d
