home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / grafica / imageengineerv3.41 / imengv3.41p2 / extra / arexx / install < prev    next >
Text File  |  1997-01-06  |  617b  |  28 lines

  1. ; Install ARexx support scripts.
  2. ; © 1996 Simon Edwards
  3. ; This script installs some support scripts for DOpus5
  4.  
  5. (transcript "Installing...")
  6.  
  7. (message  (cat    "\nThis installs some ARexx scripts that "
  8.             "perform some handy operations on indexed files."
  9.             "The scripts will be installed in the REXX: "
  10.             "directory.
  11.             ))
  12.  
  13. (working "Installing ARexx scripts...")
  14.  
  15. (copyfiles
  16.     (prompt "")
  17.     (help @copyfiles-help)
  18.     (files)
  19.     (pattern "#?.rexx")
  20.     (source "")
  21.     (dest "REXX:")
  22. )
  23.  
  24. (exit (cat
  25.     "ARexx scripts have been installed in your REXX:"
  26.     "directory.  See the ReadMe file in this"
  27.     "directory for more information."))
  28.