标签: batch-file
我有一个简单的批处理脚本:
@echo off set cash=500 :a set name= set /p input=Enter your name: echo %name% goto :a
我知道批量输入容易被利用,我已经阅读了很多文章。我可以阻止用户只输入input&&set cash=100000,但如果用户输入|字符,如何停止批处理文件?
input&&set cash=100000
|