mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-15 08:26:04 +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
|