Created
March 12, 2009 10:13
-
-
Save maraigue/77995 to your computer and use it in GitHub Desktop.
Local Variable in MS-DOS batch file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem Info from http://ykr414.com/dos/dos05.html | |
echo %PATH% | |
setlocal | |
set PATH=HOGEPIYO | |
echo %PATH% | |
endlocal | |
echo %PATH% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment