Created
January 13, 2018 18:57
-
-
Save pavi2410/3e3698a2beac6df59731a8c41677d4c1 to your computer and use it in GitHub Desktop.
Some useful batch codes examples
This file contains hidden or 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
setlocal EnableDelayedExpansion | |
echo Searching for java files... | |
set JAVA_FILES= | |
for %%i in (java\*.java) do set JAVA_FILES=!JAVA_FILES! %%i && echo %%i | |
echo Found Java Files:%JAVA_FILES% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment