Batch


How to read input from a file in a batch script

Windows batch scripts are incredibly useful for processing data. You can automate many tasks by a simple batch file. The most common thing that I use is a for loop over all files of a certain file name pattern, often extension: for %%I in (*.laz) do ( do something with […]