| 1. |
Solve : How do you add a string of text to multiple lines of text.? |
|
Answer» I'm creating a quick download batch file for use with rapidshare. I want to add 'START """ ' to the begining of each LINK when I copy and paste multiple links into a text file. I can copy and paste the start myself but I use this a lot and I'd like to AUTOMATE the process. Any help?Process the text file with a FOR loop. Prepend the additional text to each line and write it to a batch file, then call the batch file when you exit the loop. |
|