Windows Batch: Set Variables from Text File

前端 未结 2 477
灰色年华
灰色年华 2020-11-30 08:40

Im currently looking for a method to set variables in a windows batch file from linkes in txt document.

So for example, if the text file reads:

http:         


        
2条回答
  •  死守一世寂寞
    2020-11-30 08:43

    Here ya go! Have fun with this one.

    (
    set /p var1=
    set /p var2=
    set /p var3=
    )

    Lands you with the same results!

提交回复
热议问题