#!/bin/csh

if ($#argv < 1) then
  echo ' edflist  "<file>"'
  exit
endif

head -c 1024 $1 | grep -e "==> " -e "Time " -e "Title "

exit
