#!/bin/csh -f

# Convert Microsoft Word .doc files to straight ascii text by just
# removing characters outside the normal printable character range.
# Ultimately would be desirable to remove entire initial and terminal
# garbages strings, some of the characters being ascii and some not.

foreach i ($*)
  asciionly $i:r.doc > $i:r.txt
end
