Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
@echo off
if 1%1 == 1 goto fehler
if 1%2 == 1 goto fehler
if 1%3 == 1 goto fehler
goto do
:fehler
@echo Bitte folgende Syntax einhalten: mline Datei Zeile "Neuer Text"
goto End
:do
findstr /R /C:. /N %1 >> temp.txt
findstr /R /C:^%2: /V temp.txt >> temp2.txt
@echo %2:%3 >> temp2.txt
sort temp2.txt /O temp3.txt
del temp.txt
del temp2.txt
echo.
echo Änderungen wurden in temp3.txt übernommen
type temp3.txt
del temp3.txt
:End