|
Answer» what is .; in path command? what is DIFFERENCE between path and set path? by set path the path set is temporay or permanent?. = current directory path outputs your current path set path is a little more complex. See set /?path ; clears the path VARIABLE. I USE this at the beginning of AUTOEXEC.BAT to minimise the RAM used by things (like DOS sound drivers, DLCHLP32, IFSHLP, and other things that don't really need a PATH in their COPY of the environment to run. I set the PATH SEPARATELY near the end of AUTOEXEC.BAT.
path . loads the current directory as the path. path %path%;. adds the current directory path to the PATH variable. path just displays your current PATH variable.
|