#!/bin/csh -f

# look for information about a sector in the last 800 lines
# of the telegrams file.
# 
# uses the PD program "context".

tail -800 telegrams >ntel
egrep -n $* /dev/null ntel | context
rm -f ntel
