#!/bin/csh -f
  echo input filenames
  set files=$<
    rm -f junk5
  foreach i (${files})
       cat $i |nkf -e  > junk5
       mv -f junk5 $i
  end

