Windows Batch file to echo a specific line number
- by Lee
So for the second part of my current dilemma, I have a list of folders in c:\file_list.txt. I need to be able to extract them (well, echo them with some mods) based on the line number because this batch script is being called by an iterative macro process. I'm passing the line number as a parameter.
@echo off
setlocal enabledelayedexpansion
set…