home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 534.lha / ENV-handler_v2.5 / copyenv.scr next >
AmigaDOS Script File  |  1991-08-08  |  251b  |  14 lines

  1. .key "vardir"
  2. ;
  3. ; Copies environment variables from the specified directory
  4. ; to ENV:
  5. ;
  6. If <vardir> EQ ""
  7.    Echo "Useage: copyenv.scr dir_to_copy"
  8.    Quit
  9. EndIf
  10. List >copyvars <vardir> LFORMAT="Copy >NIL: %S%S ENV:"
  11. Execute copyvars
  12. Delete copyvars
  13.  
  14.