批量暂停问题

时间:2017-06-26 21:18:28

标签: batch-file

我正在尝试制作一个时钟,但我遇到了麻烦。

xbuild /t:SignAndroidPackage /p:Configuration=Release /p:AndroidSdkDirectory=/Users/administrator/Library/Android/sdk GoBounce/Droid/GoBounce.Droid.csproj

对于时钟,我希望它将用户输入重定向回:jual但重复它以便它实际显示当前时间。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

类似的东西?

:loop
cls
choice /t 1 /c svcgxz /m "[varSet, varView, Clock, Games, eXit] %time% jual- " /d z
if errorlevel 6 goto :loop
if errorlevel 5 goto :eof
if errorlevel 4 goto games
if errorlevel 3 goto clock
if errorlevel 2 goto varview
if errorlevel 1 goto varset

答案 1 :(得分:0)

@Echo off
:loop
cls
Echo Menu of today %date% - %time:~0,8% is
Echo:
Echo [S]  varSet
Echo [V]  varView
Echo [C]  Clock
Echo [G]  Games
Echo [X]  eXit
Echo:

choice /t 1 /c svcgxz /m "jual- " /d z
if errorlevel 6 goto :loop
if errorlevel 5 goto :eof
if errorlevel 4 call :games
if errorlevel 3 call :clock
if errorlevel 2 call :varview
if errorlevel 1 call :varset
goto :loop

:games
:clock
:varview
:varset
Echo You selected %0
timeout /t 2 >NUL
goto :eof