mirror of
https://github.com/a2-4am/4sports.git
synced 2024-11-18 22:05:31 +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
|