#!/bin/csh -f

foreach E ( *.flx )
  echo $E
  echo $E:r
  set F="$E:r"
  echo $E $F
  flx2a <"$E" >"${F}.asc"
end

