Windows 下脚本处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows 下脚本处理相关的知识,希望对你有一定的参考价值。
公司需要处理SQL的脚本问题,每个文件删除最后3行,文件数目较多,本来是别人的活,但是他解决不了,我就帮忙看了下,最后解决完毕,比网上有的速度快得多,主要是理解了for这个命令,会产生序号,而不用自己去单独产生序号,那样很麻烦。
for /f "tokens=*" %%d in (‘dir /ad /b‘) do (
cd %%d
for /f "tokens=*" %%f in (‘dir /b *.sql‘) do (
findstr /c:"use paradb;" %%f && goto fir_end
echo use paradb; > temp.temp
echo. >> temp.temp
type "%%f" >> temp.temp
del "%%f"
ren temp.temp "%%f"
:fir_end
rem "end one cir"
)
cd ..
)
:sec
set ERRORLEVEL=0
for /f "tokens=*" %%f in (‘dir /a-d /b *.sql‘) do (
if "%%f" == "histable.sql" (
findstr /c:"use hisdb;" %%f && goto sec_end
echo use hisdb; > temp.temp
) else (
findstr /c:"use paradb;" %%f && goto sec_end
echo use paradb; > temp.temp
)
echo. >> temp.temp
type "%%f" >> temp.temp
del "%%f"
ren temp.temp "%%f"
:sec_end
rem "end one cir"
)
@echo off
call:delline xxx.sql 1
goto EOF
:delline
set file=%1
for /f "tokens=2 delims=:" %%i in (‘find /c /v ".*" %file%‘) do set /a res=%%i-%2
(for /f "tokens=1* delims=:" %%a in (‘findstr /n .* %file%‘) do (
if %%a geq %res% goto MOV //这个地方知道%a,技巧满分,初学的人不知道,试了好久才知道。
echo.%%b)) > temp.temp
goto EOF
:MOV
del /f /q %file%
ren temp.temp %file%
goto EOF
:EOF
以上是关于Windows 下脚本处理的主要内容,如果未能解决你的问题,请参考以下文章