home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / batchutl.z!p / WD.DOC < prev   
Text File  |  1986-02-08  |  3KB  |  78 lines

  1.                     WD: Working Directory Retrieval Program
  2.                                  User's Guide
  3.  
  4.                                   Barry Press
  5.                               4201 Empress Avenue
  6.                             Encino, California 91436
  7.  
  8.        1.0 Introduction
  9.  
  10.  
  11.             WD is a program to remember the current working directory
  12.        and to return to that directory on command.  It is primarily
  13.        useful in MS-DOS and PC-DOS batch files which must change the
  14.        current working directory in order to run a program.  Using WD in
  15.        these batch files permits the return to the original working
  16.        directory regardless of the manipulations within the batch file.
  17.  
  18.             WD has three functions:
  19.            1.  Note the current working directory path name, saving it
  20.                for later reference.
  21.            2.  Set the current working directory to the saved path name.
  22.            3.  Print the saved working directory path name on the
  23.                screen.
  24.  
  25.  
  26.  
  27.        2.0 Running WD
  28.  
  29.  
  30.             WD is supplied on floppy disk as the file WD.COM.  It will
  31.        run on any MS-DOS or PC-DOS system running DOS version 2.0 or
  32.        later and with nearly any memory configuration.  WD permanently
  33.        occupies a small memory area of a few hundred bytes after it is
  34.        first run, and temporarily requires a few hundred more bytes each
  35.        time it is run thereafter.  The program is run with one of the
  36.        following three commands:
  37.            wd note
  38.  
  39.        to record the current working directory drive and path name;
  40.            wd set
  41.  
  42.        to change the current working directory to the saved drive and
  43.        path name; and
  44.            wd
  45.  
  46.        to print the saved working directory drive and path name.
  47.  
  48.             To illustrate the use of WD, the following batch file, named
  49.        123.bat, will execute 123 from the directory \123, and will
  50.        return to whatever directory is current when execution of the
  51.        batch file begins following termination of 123:
  52.  
  53.             echo off
  54.             wd note
  55.             cd \123
  56.  
  57.  
  58.  
  59. Last Updated 9-24-84                                         WD Version 1.0
  60.  
  61.  
  62.  
  63.  
  64.  
  65. WD: Working Directory Retrieval Program User's Guide                 Page 2
  66.  
  67.  
  68.             123
  69.             wd set
  70.  
  71.  
  72.  
  73.        3.0 Cautions
  74.  
  75.  
  76.             WD only saves one copy of the working directory path name.
  77.        Accordingly, trying to nest invocations of WD (i.e., note, note,
  78.        set, set) will not h