home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / msh_ut11.zip / MV.PAS < prev    next >
Pascal/Delphi Source File  |  1992-05-09  |  1KB  |  44 lines

  1. { A Move program for the MiShell, Jens Pirnay      }
  2. { ------------------------------------------------ }
  3. { Bases on sdfc114 by <nemossan@uitec.ac.jp>       }
  4. { Reads as many files as possible in standard me-  }
  5. { mory before writing them out again. Supports the }
  6. { MI-Shell feature of very long command-lines.     }
  7. { ------------------------------------------------ }
  8. { Some improvements and modifications for it's     }
  9. { special purpose (anyone playing AD&D out there?) }
  10. { All praise to <nemossan@uitec.ac.jp>, all criti- }
  11. { cism to <pirnay@rphs1.physik.uni-regensburg.de>  }
  12. { ------------------------------------------------ }
  13. { You can always cancel the process by pressing    }
  14. { the ESC-key at (nearly) any time.                }
  15. {-----------------------------------------------------}
  16. { Jens Pirnay <pirnay@rphs1.physik.uni-regensburg.de> }
  17. { This file is subject to the copyleft-regulations    }
  18. { of the Free Software Foundation (the guys from GNU) }
  19. {-----------------------------------------------------}
  20.  
  21. { Version 1.0 }
  22. {
  23.   Diffs to sdfc:
  24.   Removed options s, h and p; reversed the meaning of option t.
  25.   All messages and drive-check removed.
  26. }
  27.  
  28. {$DEFINE MV}        { For cp set to CP for mv to MV }
  29. {$I FLAGS.INC}
  30.  
  31. PROGRAM MiShell_Move;    { for Turbo-Pascal-v5 or later }
  32.  
  33. USES DOS, CRT,
  34. {$IFDEF Format}
  35.      FormUnit,
  36. {$ENDIF}
  37.      MSHSupport, MiniWindow;
  38.  
  39. {$I CPMV.INC}
  40.  
  41. BEGIN
  42.   DoIt;
  43. END.
  44.