尝试批量标题cmd窗口,但使用用户输入...
@echo off
Title Something Smart Here
Color 07
:start
cls
set /p command=
if %command% == title goto title
:title
cls
title %command%
确实需要帮助,我希望用户输入命令
"Title" "the title here"
^^command ^^Title
答案 0 :(得分:0)
因此,您只需测试第一个单词即可将用户输入解析为命令:
@echo off
Title Something Smart Here
Color 07
:start
cls
set /p c=
for /f %%a in ("%c%") do (
if "%%a"=="title" goto title
goto start
)
:title
cls
%c%
基本上,如果用户键入title [text]
,它会将标题更改为[text]
,程序会继续。输入任何其他内容,它会再次提示您。