?? settype.bat
字號:
@echo off
rem ----------------------------------------------------------------------------
rem Rev Date Name Description
rem ----------------------------------------------------------------------------
rem R02 OCT-15-90 SMS adding copyright stmt.
::---------------------------------------------
::File name: settype.bat
::Purpose: Force bios.bat to think we have a different size and type...
::Author: Dean W. (modified by T. Lewis)
::Date: 12/1/89
::
::Command: settype product_number [intended size]
::
::Notes:
::
::---------------------------------------------
@echo off
::---------------------------------------------
::Set the type, if one is specified...
::---------------------------------------------
if not "%1" == "" goto :settype
@echo Error! No product number specified...
goto :done
:settype
@echo Setting type to %1
set _last=%1
goto :done
::---------------------------------------------
:: Bad size specified...
::---------------------------------------------
:bad_size
ECHO %2 is an invalid size!
goto :done
:done
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -