home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 594b.lha / Dautostart / mkexample < prev    next >
Text File  |  1991-09-11  |  641b  |  59 lines

  1.  
  2. ;   this example creation script works under 1.3 AND 2.0
  3. ;
  4.  
  5. copy "" df0: ALL CLONE
  6.  
  7. if NOT EXISTS df0:c
  8. makedir df0:c
  9. endif
  10.  
  11. if NOT EXISTS df0:l
  12. makedir df0:l
  13. endif
  14.  
  15. if exists c:execute
  16. copy c:execute df0:c
  17. endif
  18.  
  19. if exists c:run
  20. copy c:run df0:c
  21. endif
  22.  
  23. if exists c:path
  24. copy c:path df0:c
  25. endif
  26.  
  27. if exists c:cd
  28. copy c:cd df0:c
  29. endif
  30.  
  31.  
  32. if exists c:assign
  33. copy c:assign df0:c
  34. endif
  35.  
  36. if exists c:delete
  37. copy c:delete df0:c
  38. endif
  39.  
  40. if exists c:info
  41. copy c:info df0:c
  42. endif
  43.  
  44. if exists c:echo
  45. copy c:echo df0:c
  46. endif
  47.  
  48. if exists l:port-handler
  49. copy l:port-handler df0:l
  50. endif
  51.  
  52. if exists l:ram-handler
  53. copy l:ram-handler df0:l
  54. endif
  55.  
  56. install df0:
  57.  
  58.  
  59.