如何在 DOS 批处理中清空键盘缓冲区?

发布于 2024-12-11 17:59:48 字数 650 浏览 0 评论 0原文

我制作了一个简单的批处理脚本来生成 CodeIgniter 文件夹结构(脚手架),但是...该脚本会记住 %1 环境变量的最后一个值,因为有一个键盘缓冲区。有什么简单的解决办法吗?我使用的是 Windows 7

@echo off
REM by Pablo Bozzolo (2011)

REM HOW to empty keyboard buffer before ???
if "%1"=="" goto inicio
set (%uname%)=(%1)
goto creacion

:inicio
set /P uname=Nombre del modulo ? 
if "%uname%"=="" goto inicio

echo Desea crear el modulo %uname%
choice 
if errorlevel 2 goto end

:creacion
mkdir %uname%
cd %uname%
mkdir config
mkdir controller
mkdir libraries
mkdir models
mkdir views

type NUL > ./controller/%uname%.php
type NUL > ./models/%uname%_m.php
cd..
echo Modulo %uname% creado!
goto end
:end

I've made a simple batch script to generate CodeIgniter folder structure (scaffolding) but... the script remembers the last value of the %1 enviroment variable because there is a keyboard buffer. Any simple solution? I'm using Windows 7

@echo off
REM by Pablo Bozzolo (2011)

REM HOW to empty keyboard buffer before ???
if "%1"=="" goto inicio
set (%uname%)=(%1)
goto creacion

:inicio
set /P uname=Nombre del modulo ? 
if "%uname%"=="" goto inicio

echo Desea crear el modulo %uname%
choice 
if errorlevel 2 goto end

:creacion
mkdir %uname%
cd %uname%
mkdir config
mkdir controller
mkdir libraries
mkdir models
mkdir views

type NUL > ./controller/%uname%.php
type NUL > ./models/%uname%_m.php
cd..
echo Modulo %uname% creado!
goto end
:end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清旖 2024-12-18 17:59:48

如果你想处理%1(如果它是空的),只需写

if "%~1" LEQ "" set uname=%1

If you would like to handle %1 if its empty, simply write

if "%~1" LEQ "" set uname=%1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文