home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / util / mayflower.lha / MayFlower / ByteX / swab < prev    next >
AmigaDOS Script File  |  1994-06-09  |  454b  |  23 lines

  1. .key textfile
  2.  
  3. IF "<textfile>" EQ ""
  4.  echo "Usage> swab textfile"
  5.  SKIP endscript
  6. ELSE
  7.  
  8. echo
  9. echo "Execute swab <textfile> --) Start"
  10.  
  11. copy <textfile> RAD:<textfile><$$>
  12. bytex RAD:<textfile><$$> -o -h 0a0d -h 0a
  13. bytex RAD:<textfile><$$> -o -h 0d0a -h 0a
  14. trimlines RAD:<textfile><$$> -o
  15. sift RAD:<textfile><$$> -o os1:helps/filter.ed
  16. copy RAD:<textfile><$$> <textfile>
  17.  
  18. delete rad:<textfile><$$>
  19.  
  20. echo "Execute swab <textfile> --) End"
  21. echo
  22. LAB endscript
  23.