#!/bin/sh
#	FindWaste [n]
# Use the byteyears program to find wasteful files, defined as those for
# which the byte*years value is > n.
N=10000
for	p 
do	case "$p" in
	[0-9]*)
		N=$p
		shift;;
	esac
done

find . -type f -print \
	| byteyears -m$N
