home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / disks / better_pd / utilities_1 / progs / diskclean < prev    next >
Encoding:
AmigaDOS Script File  |  1986-09-20  |  1.1 KB  |  34 lines

  1. .key disk                ;Written by RAY CLARK on 30 SEP 86
  2.  
  3. IF "<disk>" eq ""        ;Check for drive specifier
  4.   SKIP usage             ;Show user how to use this file
  5. ENDIF                    ; if no disk drive was specified
  6.  
  7. ECHO "Insert the cleaning disk into the drive"
  8. ECHO "    I will now wait for 10 seconds     "
  9. WAIT 10 secs             ;Pause to give the user a chance
  10.  
  11. diskchange <disk>:       ;Execute 12 diskchange commands to cycle disk
  12. diskchange <disk>:
  13. diskchange <disk>:
  14. diskchange <disk>:
  15. diskchange <disk>:
  16. diskchange <disk>:
  17. diskchange <disk>:
  18. diskchange <disk>:
  19. diskchange <disk>:
  20. diskchange <disk>:
  21. diskchange <disk>:
  22. diskchange <disk>:
  23.  
  24. SKIP done                ;Skip to the end after claening the disk
  25.  
  26. LAB usage                ;Explain to the user how to invoke
  27. ECHO "                           Diskclean usage"
  28. ECHO "                     Type in EXECUTE DISKCLEAN DFx"
  29. ECHO "                       Where x is the unit number"
  30. ECHO "                        The Colon (:) is optional"
  31.  
  32. LAB DONE                 ;all done now
  33.  
  34.