Windows-Server-2003/tools/make_publish_spec.cmd

20 lines
229 B
Batchfile
Raw Permalink Normal View History

2024-08-04 01:28:15 +02:00
@echo off
setlocal
set ROOT=%1
set OBJ=%2
shift
shift
set LIST=
for %%i in (%*) do (
if "%%i" neq "%ROOT%" (
if "%%i" neq "%OBJ%" (
set LIST=!LIST! {%OBJ%\%%i=%ROOT%\%%i}
)
)
)
echo %LIST%