尝试批量使用用户输入创建标题

时间:2015-04-19 10:08:48

标签: batch-file command echo title

尝试批量标题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

1 个答案:

答案 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],程序会继续。输入任何其他内容,它会再次提示您。