?? mfilttool.bat
字號(hào):
@echo off
rem
rem MFiltTool.bat: Driver for processing a PLG file with STLFilt.pl
rem as an MSVC "Tool" script. See README-VCTool.txt for instructions.
rem (Updated 4/05/2003)
rem ********************************************************************
rem Configure the following variables as appropriate for your system:
rem STLFILT: Full pathname of the Perl script
rem POPTIONS: Options to Perl interpreter
rem FOPTIONS: Options to Filter (the Decryptor Perl script)
rem
rem The value of the environment variable FOPTS is concatenated onto the
rem value of FOPTIONS. This permits trying out different filtering options
rem without editing this batch file: just set FOPTS to the desired options
rem before running MFilt.BAT.
rem *********************************************************************
set STLFILT=c:\STLFilt.pl
set POPTIONS=
set FOPTIONS=/plg
rem ********************************************************************
if not "%1" == "" goto filter
echo Usage: mfilttool PLG-filename
echo Filters PLG file through STL Error Decryptor.
echo (to supply Decryptor options, set the FOPTIONS variable to
echo your "permanent" options, and/or the FOPTS variable in your environment
echo to "temporary" options.)
echo.
goto done
:filter
perl %POPTIONS% %STLFILT% %FOPTIONS% %FOPTS% < "%1"
:done
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -