home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / demon / amstrad / logofix.arc / RENAME.DOC < prev    next >
Encoding:
Text File  |  1993-05-28  |  1.6 KB  |  37 lines

  1. LOGO rename patches - information                        John Elliott, May 1993.
  2. ================================================================================
  3.   As reported in Robert Grant's excellent book "The PCW LOGO manual", the
  4. 'changef' command to rename files in LOGO does not work. The following files
  5. provide renaming with a scope somewhat greater than either the original
  6. 'changef' command (even if it had been working) or Mr. Grant's alternative.
  7.   There are two stages; the first needs to be carried out only once:
  8.  
  9.     Make a copy of the file LOGO.COM (perhaps on drive M:). Copy onto the same
  10.     drive the files:
  11.  
  12.     COMPAT.COM  RENAME.CMP
  13.  
  14.     and type COMPAT LOGO RENAME <RETURN>. Now copy LOGO.COM from this disc to
  15.     your LOGO work disc. DO NOT DO THIS WITH YOUR MASTER DISC!! Finally, copy
  16.     the file RENAME.LOG to your LOGO work disc.
  17.  
  18.   The second step should be carried out when you want to rename files:
  19.  
  20.    From LOGO, type:
  21.  
  22.    load "rename <RETURN>                         then
  23.    rename "newfile "oldfile <RETURN>
  24.  
  25.    (replacing newfile and oldfile by the actual filenames).
  26.  
  27.    You must use 'file.log' rather than 'file' to refer to LOGO procedure files.
  28.  
  29.   If you want to, you can add the "rename" procedures to your STARTUP.LOG file,
  30. perhaps by typing:
  31.  
  32. erall load "startup load "rename erasefile "startup save "startup <RETURN>
  33.  
  34. Some information on the machine code routine is given in RENAME.CMP. See also
  35. RENAME.Z80
  36. ________________________________________________________________________________
  37.