All pastes #2106900 Raw Edit

Someone

public text v1 · immutable
#2106900 ·published 2012-01-28 00:11 UTC
rendered paste body
@echo off
set dest=B:\copies
set dir1=#-E
set set1=0* 1* 2* 3* 4* 5* 6* 7* 8* 9*
set dir2=#-E
set set2=A* B* C* D* E*
set dir3=F-O
set set3=F* G* H* I* J* K* L* M* N* O*
set dir4=P-Z
set set4=P* Q* R* S* T* U* V* W* X* Y* Z*
set dir5=
set set5=

for /l %%a in (1,1,9) do call :copy "%%set%%a%%" "%dest%\%%dir%%a%%"
goto :end

:copy
for /d %%b in (%~1) do (
	echo %~2\%%b\
	xcopy "%%b\*" "%~2\%%b\" /c/e/g/h/i/k/o >nul
)

:end