mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
11 lines
137 B
Batchfile
11 lines
137 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
> test_file_list.txt (
|
|
for %%f in (test_*.cpp) do (
|
|
echo %%~nxf
|
|
)
|
|
)
|
|
|
|
endlocal
|