我一直在制作一个带批量的“加载”程序(在底部显示),当我测试它时,有一个恼人的小闪烁标记,指示在哪里键入 cmd
。但是,你不能输入任何东西,所以它是无用的。它真的带走了它,这是我所能看到的。
有没有办法阻止输入标记闪烁?
或者,更好的是,完全停止它?
我的代码是:
@echo off
title Loading...
:start
@echo .
PING localhost -n 2 >NUL
cls
@echo ..
PING localhost -n 2 >NUL
cls
@echo ...
PING localhost -n 2 >NUL
cls
@echo
cls
goto start