Skip to content

Instantly share code, notes, and snippets.

@pavi2410
Created January 13, 2018 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavi2410/3e3698a2beac6df59731a8c41677d4c1 to your computer and use it in GitHub Desktop.
Save pavi2410/3e3698a2beac6df59731a8c41677d4c1 to your computer and use it in GitHub Desktop.
Some useful batch codes examples
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