#!/bin/csh -f # Takes .hqx files and decodes then to MacBinary. If the operation # succeeds then remove the .hqx If your termianl program uses # macget/macput or some other method than MacBinary this script wont # do you any good. Mcvert should be available at sumex-aim.stanford.edu. # Works on your current directory. foreach f (*hqx) mcvert $f && rm $f end .