#!/bin/sh
# ~/bin/.sh/greptel1
# by http://www.berklix.com/~jhs/bin/.sh/greptel1
# See Also:
#	~/bin/.sh/telno
#	~/bin/.sh/greptel2
#	~/bin/.sh/greptel3

# Used by hand to look up phone numbers of callers delivered into 
# ~/mail/cron/router/call*/*

# find -s ~/mail/cron/router/call/*/* -type f -name \[0\-9\]\*
grep "Call from: " `find -s ~/mail/cron/router/call/*/* -type f | grep -v .xmhcache | grep -v , | grep -v .mh_sequences`
echo "Suggestion: greptel2 MOUSED_SUB_STRING"

