#!/bin/sh
# this file produces a histogram of file name lengths for the
# files in the current subtree of the file system.
find . -name '*' | \
	sed -e 's/^.*\///' | \
	tr '[:print:]' '[x*]' | \
	sort | \
	uniq -c

