I would like to know how to loop through each line in a text file using a Windows batch file and process each line of text in succession.
|
The posts below helped greatly, but did not do what I stated in my question where I needed to process the entire line as a whole. Here is what I found to work.
The tokens keyword with an asterisk (*) will pull all text for the entire line. If you don't put in the asterisk it will only pull the first word on the line. I assume it has to do with spaces. I appreciate all of the posts! |
|||||||
|
|
From the Windows command line reference: To parse a file, ignoring commented lines, type:
This command parses each line in Myfile.txt, ignoring lines that begin with a semicolon and passing the second and third token from each line to the FOR body (tokens are delimited by commas or spaces). The body of the FOR statement references %i to get the second token, %j to get the third token, and %k to get all of the remaining tokens. If the file names that you supply contain spaces, use quotation marks around the text (for example, "File Name"). To use quotation marks, you must use usebackq. Otherwise, the quotation marks are interpreted as defining a literal string to parse. By the way, you can find the command-line help file on most Windows systems at:
|
||||
|
|
|
In a Batch File you MUST use
What this does: The "do call :process %%i %%j %%k" at the end of the for command passes the information acquired in the for command from myfile.txt to the "process" 'subroutine'. When you're using the for command in a batch program, you need to use double % signs for the variables. The following lines pass those variables from the for command to the process 'sub routine' and allow you to process this information.
I have some pretty advanced uses of this exact setup that I would be willing to share if further examples are needed. Add in your EOL or Delims as needed of course. |
||||
|
|
|
Here's a bat file I wrote to execute all SQL scripts in a folder:
|
|||||
|
|
Or, you may exclude the options in quotes:
|
|||
|
|
|
Improving the first "FOR /F.." answer: What I had to do was to call execute every script listed in MyList.txt, so it worked for me:
--OR, if you wish to do it over the multiple line:
Edit: The example given above is for executing FOR loop from command-prompt; from a batch-script, an extra % needs to be added, as shown below:
|
||||
|
|
|
If you have an NT-family Windows (one with |
||||
|
|
|
Modded examples here to list our Rails apps on Heroku - thanks!
Full code here. |
|||
|