Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo Zusammen,

ich habe folgendes Problem, das ich mittels Batch lösen möchte... allerdings weiss ich noch nicht wie es gehen könnte und hoffe daher auf ein wenig Unterstützung... :)

Problem: Ich habe eine .txt Datei mit diversen Dateinamen:

Dateiinhalt sieht wie folgt aus:

1234.exe

4321.exe

1243.exe

1324.exe

Jetzt möchte ich diese Datei mit einer Batch auslesen und den Dateiinhalt Zeile für Zeile in eine neue Batch Datei mit einem dazugehörigen Parameter schreiben...

Das soll dann in etwas so aussehen: :call 1234.exe /bla /blub

Hat von euch einer eine Idee, wie man so etwas realisiern kann?

Danke...

Gruss AVEN

Angenommen deine txt-Datei heisst "Daten.txt"

Dann geht in einer Batch-Datei das so:

for /f %%i in (Daten.txt) do echo :call %%i /bla /blub >> AndereDatei.txt

Wenn du dass ganze an der Kommandozeile machst, dann ist es:

for /f %i in (Daten.txt) do echo :call %i /bla /blub >> AndereDatei.txt

Erklärung:

die Variable %i wird für jede neue Zeile neu ausgelesen und an den Befehl nach dem "do" übergeben.

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.