home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 1 / amigaformatcd01.iso / pd / text_editors / bed / rexx / insertversion.bed < prev    next >
Encoding:
Text File  |  1996-04-30  |  415 b   |  23 lines

  1. /*
  2. ** $VER: InsertVersion.bed 1.0 (02.01.96)
  3. **
  4. ** Insert an AmigaDOS version string at the current cursor position,
  5. ** taking the current filename and date.
  6. */
  7.  
  8. OPTIONS RESULTS
  9.  
  10. GetFileInfo
  11. PARSE VAR RESULT . . '"'name'"'
  12.  
  13. date = DATE(e);
  14.  
  15. day = SUBSTR(date,1,2)
  16. month = SUBSTR(date,4,2)
  17. year = SUBSTR(date,7,2)
  18.  
  19. str = "$VER: " || name || " .0 (" || day || "." || month || "." || year || ")"
  20. Text str
  21.  
  22. MoveLeft 13
  23.