home *** CD-ROM | disk | FTP | other *** search
- echo off
- if %1.==. goto explain
- echo ─────────────────────────────────────────────────────────────
- echo Copying tutorial and example files to %1
- echo ─────────────────────────────────────────────────────────────
- copy merge.dbf %1
- copy example.let %1
- copy kwpr-tut.txt %1
- copy kwtutor.txt %1
- echo
- echo ─────────────────────────────────────────────────────────────
- echo Copy is finished. Begin the tutorial with the command
- echo
- echo KWTUTOR
- echo ─────────────────────────────────────────────────────────────
- goto end
- :explain
- echo ─────────────────────────────────────────────────────────────
- echo
- echo The format for this command is:
- echo
- echo KWDOCS d:
- echo
- echo where d: is the name of the disk where you want to
- echo copy tutorial and example files. For example,
- echo
- echo KWDOCS B:
- echo
- echo would copy the files to the B: drive.
- echo ─────────────────────────────────────────────────────────────
- :End
-
-