I'm currently looking for a method to set variables in a Windows batch file from links in a txt document.
So, for example, if a text file reads:
http://website1.com http://website2.com http://website3.com
I hope to output them to variables in the package. Example:
set var1="Line one of text file, ex: http://website1.com" set var2="Line two of text file, ex :http://website2.com" set var3="Line three of text file, ex: http://website3.com"
Any help is appreciated, thanks in advance!
source share