ich habe ein Problem und kommen nicht weiter ...
Ich habe sehr viele Textdateien und möchte diese verbinden, leere Zeilen löschen und Inhalte suchen.
Ich habe 2 cmd Dateien erstellt aber die Daten ( der Inhaltssuche ) werden jeweils doppelt ausgewertet.
Datei 1:
Code: Select all
@echo off
echo. > KS-Inhalt.txt
For %%i in (KH-*.txt) do call Dat-verbinden %%i
Code: Select all
@echo off
set Datei=%1
cls
echo.
echo Datei %Datei% wird verarbeitet
echo.
echo ======================= >> KS-Inhalt.txt
echo === %Datei% === >> KS-Inhalt.txt
echo ======================= >> KS-Inhalt.txt
:: der folgende Befehl wird 2x ausgeführt . Wieso ?
:?:
findstr "VV011" %Datei% >> KS-Inhalt.txt