1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00
cdt/llvm/org.eclipse.cdt.managedbuilder.llvm.ui/scripts/find_path.bat
Jonah Graham 48d2271a58 Bug 540373: Normalize newlines with .gitattributes
There is also a new script to verify completeness of .gitattributes:
releng/scripts/verify_gitattributes.sh

Change-Id: I2ce270852ab54b66b6c474a6ec94203fe5bba78b
2018-11-20 21:20:39 +00:00

9 lines
No EOL
187 B
Batchfile

@echo OFF
for %%D in (c,d,e) do (
If exist %%D:\ (
for /f "delims=" %%f in ('dir /b /s %%D:\%1 2^> NUL') do (
@echo %1 found: %%~dpf
)
)
)