> I had at least one missed call, I can't find a call log, so it may have
> been more.
numbers are in zhone.log.
i hacked an ugly script extracting those numbers -- but if you reboot,
zhone.log is created fom scratch (still want to do it in python, but the
documentation is ... sparse and hard to find).
the script puts out date, time and number
#!/bin/bash
LINES=`grep "CALL STATUS" /tmp/zhone.log | grep incoming`
declare -a LINE
LINE=(`echo $LINES`)
#echo [EMAIL PROTECTED]
echo "CALLS"
for (( i=0;i<[EMAIL PROTECTED];i++ )); do
if [ $(($i%21)) = 0 ]; then
echo ${LINE[$i]} ${LINE[$((i+1))]} ":" `echo ${LINE[$(($i+12))]}
| cut -f2 -d"'" -`
fi
done
echo "DONE"
_______________________________________________
support mailing list
[email protected]
https://lists.openmoko.org/mailman/listinfo/support