#!/bin/tcsh

foreach x ($1)
  set result = "`eas-detect $* < $x`"
  if ( "$status" == 0) then
    echo -n "	"
  else
    set where = `echo "$result" | grep -o -E '[0-9]+:[0-9]+'`
    echo -n "$where	"
  endif
  echo $x
end
