2015-04-19 148 views
0

試圖標題批量cmd窗口,但通過用戶輸入的用戶輸入來創建一個標題...嘗試使用批處理

@echo off 
Title Something Smart Here 
Color 07 

:start 
cls 
set /p command= 

if %command% == title goto title 

:title 
cls 
title %command% 

真的需要幫助,我希望用戶輸入的命令,以便

@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" "the title here" 
^^command ^^Title 

回答

0

所以,你可以通過測試只有第一個字分析用戶輸入的命令e用戶類型title [text]它將標題更改爲[text]並繼續執行程序。輸入其他內容,它會再次提示你。