PATH--Example(s)
The following command specifies that MS-DOS is to search three directories
to find commands (the three paths for these directories are C:\USER\TAXES,
B:\USER\INVEST, and B:\BIN):
path c:\user\taxes;b:\user\invest;b:\bin
A batch example. Specifies that MS-MOS is to search in the following order:
folder_3 + folder_2 + folder_1 + same as above.
path c:\user\taxes;b:\user\invest;b:\bin
set path=..\;..\..\;%path%
cd \folder_1\folder_2\folder_3
|