All pastes #2093407 Raw Edit

Stuff

public text v1 · immutable
#2093407 ·published 2011-11-09 19:32 UTC
rendered paste body
SETLOCAL EnableDelayedExpansion
 for /f "tokens=*" %%a in ('dir/b/s *.csv') do  (findstr /I "Magog Sherbrooke Waterville" "%%a"
 if !errorlevel! equ 0 (
 copy "%%a" %temp%\check
    ) else (
 copy "%%a" %temp%\donotcheck
 )

)