我需要帮助在Windows上编写批处理脚本。 我的目录C:\ OUTFiles包含2355个.txt文件,各种长度包含维基百科文章的链接 - 例如一个名为“Holzhausen.txt”的文件:
http://de.wikipedia.org/wiki/ [[Holzhausen(Langenpreising)]],Ortsteil der Gemeinde [[Langenpreising]] http://de.wikipedia.org/wiki/ [Holzhausen(Dähre)]],Ortsteil der Gemeinde [[Dähre]] ...
我想查看C:\ OUTFiles中的所有文件,并将每个文件的长度切换为10行(如果短于10行,则不要更改长度)。
此外,如果文件包含[[some text]],如上面第一行所示,我需要删除所有括号[[]]。
我怎样才能在Windows上作为批处理脚本文件执行此操作? 我是批处理脚本的新手,我搜索了StackOverflow,并试图组装一个批处理脚本,但它还没有完成/工作:
@ECHO OFF
setlocal enabledelayedexpansion
set counter=1
for %%f in (*.txt) do call :p "%%f"
goto :eof
:p
SET /A maxlines=10
SET /A linecount=0
FOR /F %%A IN (*.txt) DO (
IF !linecount! GEQ %maxlines% GOTO ExitLoop
ECHO %%A
SET /A linecount+=1
)
SET /A counter+=1
:ExitLoop
:eof
PAUSE
提前多多谢谢!! 佩特拉
答案 0 :(得分:0)
此解决方案假设您购买我的建议以使用PowerShell而不是批处理。
# this line assumes current directory - adjust to point to the actual location
$files = get-childitem *.txt
foreach ($file in $files) {
$data = get-content $file
$count = 1
# this assumes that you want to put the modified
# output in a new file and keep the original file
$newfile = $file.name + ".new.txt"
foreach ($line in $data) {
if($count -gt 10) {break}
$line = $line -replace "[\[\]]",''
out-file -filepath $newfile -inputobject $line -Append
$count = $count + 1
}
}