How to read input from console in a batch file?

后端 未结 3 1487
孤独总比滥情好
孤独总比滥情好 2020-12-04 20:49

How do I read input from the console in a batch file? What I am trying to achieve is the functionality of scanf in C. How can I do the same in a batch file?

3条回答
  •  旧巷少年郎
    2020-12-04 21:29

    The code snippet in the linked proposed duplicate reads user input.

    ECHO A current build of Test Harness exists.
    set /p delBuild=Delete preexisting build [y/n]?: 
    

    The user can type as many letters as they want, and it will go into the delBuild variable.

提交回复
热议问题