mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-05 03:06:35 +00:00
15 lines
242 B
Batchfile
15 lines
242 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
for /f "tokens=*" %%a in (%1) do (
|
|
set f=0
|
|
call :x %%a
|
|
if !f!==2 goto:eof
|
|
if !f!==0 1>nul copy /b /y %2+%3\%%a %2
|
|
)
|
|
goto:eof
|
|
|
|
:x
|
|
set a=%1
|
|
if not x%a:#=%==x%a% set/a f=1
|
|
if not x%a:[=%==x%a% set/a f=2
|