:   HINT
H='
==========
hypher file(s)
==========
show hyphenated words
==========
'
case $1 in
    -h|help|hint)   clear;echo "$H";exit 0;;
    *) ;;
esac
X='
/^  *$/ {
    next
    }
/^-----/    {
    next
    }
/^$/    {
    next
    }
    {
    if(lp != "NO")  {
        printf("%s ",lp)
        printf("%s %s %d\n",$1,FILENAME,NR)
        lp = "NO"
        }
    }
/[a-z]-$/{
    lp = $NF
    }
'
for i in "$@"
do
if test -t 1
then
awk -e "$X" $i| more
else
awk -e "$X" $i
fi
done
