home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / util / unix / ftpscrip.tz / ftpscrip / FtpExtra / bin / undo < prev   
Encoding:
Text File  |  1991-08-19  |  365 b   |  13 lines

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