config.bat

来自「一款拥有一定历史的C语言编译器」· Batch 代码 · 共 16 行

BAT
16
字号
@echo OFF
REM		config.bat
REM		~~~~~~~~~~
REM	This file checks if the current CONFIG.H header file
REM     is the same as the header file given as the parameter.
REM     If not it copies the given header file over the CONFIG.H
REM     header and deletes all files that are now out of date.

diff %1 config.h >NUL
if NOT ERRORLEVEL 1 goto END
copy %1 config.h
del c86.rs?
del *.obj
del *.exe
:END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?