如何让98启动盘支持命令扩展
如何让下面的批处理在98启动盘下正常运行?
@echo off
if "%~x1%"==".txt" goto xxxx
echo no
goto end
:xxxx
echo yes
:end
参考答案:批处理文件中%%双写:
for %%1 in (*.txt) do echo YOURWORD
如何让下面的批处理在98启动盘下正常运行?
@echo off
if "%~x1%"==".txt" goto xxxx
echo no
goto end
:xxxx
echo yes
:end
参考答案:批处理文件中%%双写:
for %%1 in (*.txt) do echo YOURWORD