#!/bin/csh

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

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

exit
