home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Editor / CEDPA336.LHA / PatchED < prev    next >
Encoding:
Text File  |  1994-10-29  |  595 b   |  33 lines

  1. .bra {
  2. .ket }
  3.  
  4. ; patchED
  5. ;
  6. ; $VER: patchED 1.0.0 (20.4.94)
  7. ;
  8. ; This AmigaDOS script is used to patch ED v3.5 to v3.6.
  9. ;
  10. ; Copyright © 1994 ASDG, Incorporated
  11. ; All Rights Reserved
  12.  
  13. Echo "patchED - CygnusEd Professional ED patch script"
  14. Echo ""
  15. IF EXISTS ED
  16.     IF EXISTS ED36.pch
  17.         Echo "...Patching ED v3.5 to v3.6"
  18.         lpatch -oED.new -pED36.pch ED
  19.  
  20.         Echo "...Renaming ED v3.5 as ED_3.5"
  21.         Rename ED ED_3.5
  22.  
  23.         Echo "...Renaming ED v3.5 as ED"
  24.         Rename ED.new ED
  25.     Else
  26.         Echo "...ED36.pch does not exist"
  27.     EndIF
  28. Else
  29.     Echo "...ED does not exist in the current directory"
  30. EndIF
  31. Echo ""
  32. Echo "Done."
  33.