#!/bin/ksh
textsize=$(size $1 | ( read; cat) | awk '{ printf("%d\n", $1); }')
if [ $(expr $textsize % 16) -gt 7 ] ; then
	exit 0
fi
exit 1
