maraigue (owner)

Revisions

gist: 77995 Download_button fork
public
Description:
Local Variable in MS-DOS batch file
Public Clone URL: git://gist.github.com/77995.git
localvariable.bat
1
2
3
4
5
6
7
8
9
10
@echo off
 
rem Info from http://ykr414.com/dos/dos05.html
 
echo %PATH%
setlocal
set PATH=HOGEPIYO
echo %PATH%
endlocal
echo %PATH%